diff --git a/CHANGELOG.md b/CHANGELOG.md index 592be934..925630fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.3] - 2024-01-14 + +- Implemented automated authentication for Apple Music. , +- Fixed the YouTube Music logic for sourcing tracks. +- Tracks from Deezer now encode copyright information. +- Sort metadata (sonm, soar, soal) are now embedded in the output file. +- Tracks from Spotify now encode copyright in the format `℗ {YEAR} {LABEL}` to match Apple Music. +- Non-explicit Spotify tracks are now tagged "Inoffensive". +- Fix the Apple Music uri format for tracks. +- Fix the total disc number count. + ## [0.10.2] - 2024-01-01 - Ensure tracks maintain their order from collections to playlist file output. @@ -109,7 +120,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 > Release Page: -[unreleased]: https://github.com/miraclx/freyr-js/compare/v0.10.2...HEAD +[unreleased]: https://github.com/miraclx/freyr-js/compare/v0.10.3...HEAD +[0.10.3]: https://github.com/miraclx/freyr-js/compare/v0.10.2...v0.10.3 [0.10.2]: https://github.com/miraclx/freyr-js/compare/v0.10.1...v0.10.2 [0.10.1]: https://github.com/miraclx/freyr-js/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/miraclx/freyr-js/compare/v0.9.0...v0.10.0 diff --git a/README.md b/README.md index ba3fc252..fd97a9af 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ Usage: freyr [options] [query...] / /_/ ___/ _ \/ / / / ___/ / __/ / / __/ /_/ / / /_/ /_/ \___/\__, /_/ - /____/ v0.10.2 + /____/ v0.10.3 freyr - (c) Miraculous Owonubi ------------------------------------------------------ @@ -328,7 +328,7 @@ Info: / /_/ ___/ _ \/ / / / ___/ / __/ / / __/ /_/ / / /_/ /_/ \___/\__, /_/ - /____/ v0.10.2 + /____/ v0.10.3 freyr - (c) Miraculous Owonubi ------------------------------------------------------------- @@ -389,7 +389,7 @@ Checking directory permissions...[done] / /_/ ___/ _ \/ / / / ___/ / __/ / / __/ /_/ / / /_/ /_/ \___/\__, /_/ - /____/ v0.10.2 + /____/ v0.10.3 freyr - (c) Miraculous Owonubi ------------------------------------------------------------- @@ -474,7 +474,7 @@ Checking directory permissions...[done] / /_/ ___/ _ \/ / / / ___/ / __/ / / __/ /_/ / / /_/ /_/ \___/\__, /_/ - /____/ v0.10.2 + /____/ v0.10.3 freyr - (c) Miraculous Owonubi ------------------------------------------------------------- diff --git a/package-lock.json b/package-lock.json index c845b5d6..498d22e9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "freyr", - "version": "0.10.2", + "version": "0.10.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "freyr", - "version": "0.10.2", + "version": "0.10.3", "license": "Apache-2.0", "dependencies": { "@ffmpeg/core": "^0.11.0", diff --git a/package.json b/package.json index 835cf5b5..a51351a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "freyr", - "version": "0.10.2", + "version": "0.10.3", "description": "A versatile, service-agnostic music downloader and manager", "exports": "./src/freyr.js", "type": "module",