diff --git a/CHANGELOG.md b/CHANGELOG.md index 647599ac..b86ca0e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.0.0-preview.37] - 2024-12-09 + +### Fixed + +- Fixed problems with Discord Rich Presence + ## [3.0.0-preview.36] - 2024-12-08 ### Changed diff --git a/package.json b/package.json index 2e4304c4..308bed5a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "Dopamine", "version": "3.0.0", - "versionSuffix": "preview.36", + "versionSuffix": "preview.37", "copyright": "Copyright Digimezzo Ⓒ 2014 - 2024", "description": "Audio player", "homepage": "https://github.com/digimezzo/dopamine", diff --git a/src/app/common/application/product-information.spec.ts b/src/app/common/application/product-information.spec.ts index cc6b1386..8d8745e6 100644 --- a/src/app/common/application/product-information.spec.ts +++ b/src/app/common/application/product-information.spec.ts @@ -21,7 +21,7 @@ describe('ProductInformation', () => { const applicationVersion: string = ProductInformation.applicationVersion; // Assert - expect(applicationVersion).toEqual('3.0.0-preview.36'); + expect(applicationVersion).toEqual('3.0.0-preview.37'); }); });