diff --git a/CHANGELOG.md b/CHANGELOG.md index cc7803a2..82d35fac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,15 +2,22 @@ ## [Unreleased] +## [0.24.0] - 2021-04-26 + +### Fixed + +- Handle invalid Client ID/Secret [#668](https://github.com/Rigellute/spotify-tui/pull/668) +- Fix default liked, shuffle, etc. icons to be more recognizable symbols [#702](https://github.com/Rigellute/spotify-tui/pull/702) +- Replace black and white default colors with reset [#742](https://github.com/Rigellute/spotify-tui/pull/742) + +### Added + - Add ability to seek from the CLI [#692](https://github.com/Rigellute/spotify-tui/pull/692) - Replace `clipboard` with `arboard` [#691](https://github.com/Rigellute/spotify-tui/pull/691) -- Handle invalid Client ID/Secret [#668](https://github.com/Rigellute/spotify-tui/pull/668) - Implement some episode table functions [#698](https://github.com/Rigellute/spotify-tui/pull/698) -- Fix default liked, shuffle, etc. icons to more recognizable symbols [#702](https://github.com/Rigellute/spotify-tui/pull/702) - Change `--like` that toggled the liked-state to explicit `--like` and `--dislike` flags [#717](https://github.com/Rigellute/spotify-tui/pull/717) - Add to config: `enforce_wide_search_bar` to make search bar bigger [#738](https://github.com/Rigellute/spotify-tui/pull/738) - Add Daily Drive to Made For You lists search [#743](https://github.com/Rigellute/spotify-tui/pull/743) -- Replace black and white default colors with reset [#742](https://github.com/Rigellute/spotify-tui/pull/742) ## [0.23.0] - 2021-01-06 diff --git a/Cargo.lock b/Cargo.lock index 9ec852b8..209754ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1923,7 +1923,7 @@ dependencies = [ [[package]] name = "spotify-tui" -version = "0.23.0" +version = "0.24.0" dependencies = [ "anyhow", "arboard", diff --git a/Cargo.toml b/Cargo.toml index a69ce934..1b4a2d81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ documentation = "https://github.com/Rigellute/spotify-tui" repository = "https://github.com/Rigellute/spotify-tui" keywords = ["spotify", "tui", "cli", "terminal"] categories = ["command-line-utilities"] -version = "0.23.0" +version = "0.24.0" authors = ["Alexander Keliris "] edition = "2018" license = "MIT OR Apache-2.0"