Bump to v2.0.1

This commit is contained in:
Ritiek Malhotra
2020-05-18 14:13:00 +05:30
parent cd5f224e37
commit 8b7fd04321
2 changed files with 7 additions and 4 deletions

View File

@@ -8,6 +8,10 @@ The release dates mentioned follow the format `DD-MM-YYYY`.
## [Unreleased] ## [Unreleased]
## [2.0.1] (Hotfix Release) - 18-05-2020
### Fixed
- `-o m4a` would always fail.
## [2.0.0] - 18-05-2020 ## [2.0.0] - 18-05-2020
### Migrating from v1.2.6 to v2.0.0 ### Migrating from v1.2.6 to v2.0.0
For v2.0.0 to work correctly, you need to remove your previous `config.yml` due to For v2.0.0 to work correctly, you need to remove your previous `config.yml` due to
@@ -45,15 +49,14 @@ All the below changes were made as a part of #690.
Such as `-o .mp3` is now written as `-o mp3`. Such as `-o .mp3` is now written as `-o mp3`.
- **[Breaking]** Search format now uses hyphen for word break instead of underscore. Such as - **[Breaking]** Search format now uses hyphen for word break instead of underscore. Such as
`-sf "{artist} - {track_name}"` is now written as `-sf "{artist} - {track-name}"`. `-sf "{artist} - {track_name}"` is now written as `-sf "{artist} - {track-name}"`.
- **[Breaking]** `--write-sucessful` and `--skip` is renamed to `--write-succesful-file` and - **[Breaking]** `--write-successful` and `--skip` is renamed to `--write-successful-file` and
`--skip-file` respectively. `--skip-file` respectively.
Such as `-o .mp3` is now written as `-o mp3`.
- Partial re-write and internal API refactor. - Partial re-write and internal API refactor.
- Enhance debug log output readability. - Enhance debug log output readability.
- Internally adapt to latest changes made in Spotipy library. - Internally adapt to latest changes made in Spotipy library.
- Switch to `logging` + `coloredlogs` instead of `logzero`. Our loggers weren't being - Switch to `logging` + `coloredlogs` instead of `logzero`. Our loggers weren't being
setup properly with `logzero`. setup properly with `logzero`.
- Simplify checking for an already track. Previously it also analyzed metadata - Simplify checking for an downloaded already track. Previously it also analyzed metadata
for the already downloaded track to determine whether to overwrite the already downloaded for the already downloaded track to determine whether to overwrite the already downloaded
track, which caused unexpected behvaiours at times. track, which caused unexpected behvaiours at times.
- Codebase is now more modular making it easier to use spotdl in python scripts. - Codebase is now more modular making it easier to use spotdl in python scripts.

View File

@@ -1,2 +1,2 @@
__version__ = "2.0.0" __version__ = "2.0.1"