diff --git a/CHANGELOG.md b/CHANGELOG.md index e739f7c6..d3d13818 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,22 @@ ## [Unreleased] +## [0.13.0] - 2020-01-26 + +### Fixed + - Don't error if failed to open clipboard [#217](https://github.com/Rigellute/spotify-tui/pull/217) -- Allow user to configure the port for the Spotify auth Redirect URI [#204](https://github.com/Rigellute/spotify-tui/pull/204) -- Change behavior of previous button (`p`) to mimic behavior in official Spotify client. When the track is more than three seconds in, pressing previous will restart the track. When less than three seconds it will jump to previous. [#219](https://github.com/Rigellute/spotify-tui/pull/219) - Fix scrolling beyond the end of pagination. [#216](https://github.com/Rigellute/spotify-tui/pull/216) + +### Added + +- Allow user to configure the port for the Spotify auth Redirect URI [#204](https://github.com/Rigellute/spotify-tui/pull/204) - Add play recommendations for song/artist on pressing 'r' [#200](https://github.com/Rigellute/spotify-tui/pull/200) +- Added continuous deployment for Windows [#222](https://github.com/Rigellute/spotify-tui/pull/222) + +### Changed + +- Change behavior of previous button (`p`) to mimic behavior in official Spotify client. When the track is more than three seconds in, pressing previous will restart the track. When less than three seconds it will jump to previous. [#219](https://github.com/Rigellute/spotify-tui/pull/219) ## [0.12.0] - 2020-01-23 diff --git a/Cargo.lock b/Cargo.lock index e6e7ef21..4578c840 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1441,7 +1441,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "spotify-tui" -version = "0.12.0" +version = "0.13.0" dependencies = [ "backtrace 0.3.42 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 0404fc36..e5b544ff 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.12.0" +version = "0.13.0" authors = ["Alexander Keliris "] edition = "2018" license = "MIT OR Apache-2.0"