Skip to content

Commit 1f7965b

Browse files
authored
chore: version to 0.10.0 (#507)
1 parent ccdd92a commit 1f7965b

File tree

7 files changed

+28
-12
lines changed

7 files changed

+28
-12
lines changed

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
- Fix bug with Apple Music's URI parser. <https://github.com/miraclx/freyr-js/pull/403>
10+
## [0.10.0] - 2023-08-08
11+
12+
- Changed Spotify credentials, introduced migrations to mitigate any complications. <https://github.com/miraclx/freyr-js/pull/454>, <https://github.com/miraclx/freyr-js/pull/470>, <https://github.com/miraclx/freyr-js/pull/526>
13+
- Improved the YouTube Music track weighing logic, we should get 30% more accurate results. <https://github.com/miraclx/freyr-js/pull/472>
14+
- Freyr now supports paginated track artists. <https://github.com/miraclx/freyr-js/pull/471>
15+
- Accented words like `Solidarité` now get properly normalized, helping more accurate lookups. <https://github.com/miraclx/freyr-js/pull/473>
16+
- Fix bug with Apple Music & Deezer URI parser. <https://github.com/miraclx/freyr-js/pull/403>, <https://github.com/miraclx/freyr-js/pull/549>
17+
- Freyr now treats binaries in `bins/{posix,windows}` as being of higher priority than those in `PATH`. <https://github.com/miraclx/freyr-js/pull/474>
18+
- Freyr now properly handles tracks that have no copyright information. <https://github.com/miraclx/freyr-js/pull/467>
19+
- Freyr now properly checks the base dir instead of the current working dir for existing tracks. <https://github.com/miraclx/freyr-js/pull/527>
20+
- Updated logic for extracting source feeds from yt-dlp's response. <https://github.com/miraclx/freyr-js/pull/515>
21+
- Freyr now auto-disables the progress bar when it detects the absence of a compatible TTY, avoiding errors wherever possible. <https://github.com/miraclx/freyr-js/pull/506>
22+
- Allow overriding the atomicparsley binary used with the `ATOMIC_PARSLEY_PATH` environment variable. <https://github.com/miraclx/freyr-js/pull/475>
23+
- Updated `AtomicParsley` in the Docker images, fixing a class of errors. <https://github.com/miraclx/freyr-js/pull/476>
24+
- Ignore yt-dlp warnings that could cause hard errors when parsing its response. <https://github.com/miraclx/freyr-js/pull/511>
25+
- Fixed YouTube accuracy calculation. <https://github.com/miraclx/freyr-js/pull/509>, <https://github.com/miraclx/freyr-js/pull/510>
1126

1227
## [0.9.0] - 2022-12-18
1328

@@ -82,7 +97,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8297

8398
> Release Page: <https://github.com/miraclx/freyr-js/releases/tag/v0.5.0>
8499
85-
[unreleased]: https://github.com/miraclx/freyr-js/compare/v0.9.0...HEAD
100+
[unreleased]: https://github.com/miraclx/freyr-js/compare/v0.10.0...HEAD
101+
[0.10.0]: https://github.com/miraclx/freyr-js/releases/compare/v0.9.0...v0.10.0
86102
[0.9.0]: https://github.com/miraclx/freyr-js/releases/compare/v0.8.1...v0.9.0
87103
[0.8.1]: https://github.com/miraclx/freyr-js/releases/compare/v0.8.0...v0.8.1
88104
[0.8.0]: https://github.com/miraclx/freyr-js/releases/compare/v0.7.0...v0.8.0

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ Usage: freyr [options] [query...]
234234
/ /_/ ___/ _ \/ / / / ___/
235235
/ __/ / / __/ /_/ / /
236236
/_/ /_/ \___/\__, /_/
237-
/____/ v0.9.0
237+
/____/ v0.10.0
238238

239239
freyr - (c) Miraculous Owonubi <[email protected]>
240240
------------------------------------------------------
@@ -328,7 +328,7 @@ Info:
328328
/ /_/ ___/ _ \/ / / / ___/
329329
/ __/ / / __/ /_/ / /
330330
/_/ /_/ \___/\__, /_/
331-
/____/ v0.9.0
331+
/____/ v0.10.0
332332

333333
freyr - (c) Miraculous Owonubi <[email protected]>
334334
-------------------------------------------------------------
@@ -389,7 +389,7 @@ Checking directory permissions...[done]
389389
/ /_/ ___/ _ \/ / / / ___/
390390
/ __/ / / __/ /_/ / /
391391
/_/ /_/ \___/\__, /_/
392-
/____/ v0.9.0
392+
/____/ v0.10.0
393393

394394
freyr - (c) Miraculous Owonubi <[email protected]>
395395
-------------------------------------------------------------
@@ -474,7 +474,7 @@ Checking directory permissions...[done]
474474
/ /_/ ___/ _ \/ / / / ___/
475475
/ __/ / / __/ /_/ / /
476476
/_/ /_/ \___/\__, /_/
477-
/____/ v0.9.0
477+
/____/ v0.10.0
478478

479479
freyr - (c) Miraculous Owonubi <[email protected]>
480480
-------------------------------------------------------------

cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ async function init(packageJson, queries, options) {
630630
else stackLogger.print(`[•] Migrating config file from v${context.fromVersion} → v${context.toVersion}...`);
631631
},
632632
migrations: {
633-
'0.9.1': store => {
633+
'0.10.0': store => {
634634
// https://github.com/miraclx/freyr-js/pull/454
635635
// Dump any old config for Spotify before this point
636636
store.set('services.spotify', {});

conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
},
5555
"apple_music": {
5656
"storefront": "us",
57-
"developerToken": "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IldlYlBsYXlLaWQifQ.eyJpc3MiOiJBTVBXZWJQbGF5IiwiaWF0IjoxNjg2ODU3MzYwLCJleHAiOjE2OTQxMTQ5NjAsInJvb3RfaHR0cHNfb3JpZ2luIjpbImFwcGxlLmNvbSJdfQ.p-w8E36TJT0zGhIsT_yWRJkouUIProcnx8OR4mXMHUUKUY-Evi4mmhpPam9ZINbmES3YIH1s7yc8PbCTKaALnQ"
57+
"developerToken": "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IldlYlBsYXlLaWQifQ.eyJpc3MiOiJBTVBXZWJQbGF5IiwiaWF0IjoxNjkwNDA2ODM1LCJleHAiOjE2OTc2NjQ0MzUsInJvb3RfaHR0cHNfb3JpZ2luIjpbImFwcGxlLmNvbSJdfQ.seFShNhCiGuoj5qBOqECAoKBtKJF0wN-KaEj4HICJnExwXtnYabeb0jTSSrK1uez5b6XvYUOsx0pgARKm1AJQg"
5858
},
5959
"deezer": {
6060
"retries": 2

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "freyr",
3-
"version": "0.9.1",
3+
"version": "0.10.0",
44
"description": "A versatile, service-agnostic music downloader and manager",
55
"exports": "./src/freyr.js",
66
"type": "module",

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1957,7 +1957,7 @@ [email protected], node-fzf@~0.5.1:
19571957
resolved "https://registry.npmjs.org/node-fzf/-/node-fzf-0.11.0.tgz"
19581958
integrity sha512-djlXFlrGSrGCHVHOr4iPRkfPuZXac6Elv0wBtKEJ383Dd/rj+9zaCu4JDZQVSGvoDRRSfJYL4roK9SLjTxeOIg==
19591959
dependencies:
1960-
cli-color "~2.0.0"
1960+
cli-color "~1.2.0"
19611961
keypress "~0.2.1"
19621962
minimist "~1.2.5"
19631963
redstar "0.0.2"

0 commit comments

Comments
 (0)