diff --git a/Cargo.lock b/Cargo.lock index f170df93..53123dbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4304,7 +4304,7 @@ dependencies = [ [[package]] name = "youtui" -version = "0.0.7" +version = "0.0.8" dependencies = [ "clap", "crossterm", @@ -4327,7 +4327,7 @@ dependencies = [ [[package]] name = "ytmapi-rs" -version = "0.0.7" +version = "0.0.8" dependencies = [ "async-stream", "chrono", diff --git a/youtui/CHANGELOG.md b/youtui/CHANGELOG.md index fae6220b..18efec17 100644 --- a/youtui/CHANGELOG.md +++ b/youtui/CHANGELOG.md @@ -5,6 +5,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.0.8](https://github.com/nick42d/youtui/compare/youtui/v0.0.7...youtui/v0.0.8) - 2024-07-24 + +### Added +- Add commandline flag to change auth type. Resolves [#98](https://github.com/nick42d/youtui/pull/98) ([#99](https://github.com/nick42d/youtui/pull/99)) +- Implement Taste Profiles and Moods - Resolves [#75](https://github.com/nick42d/youtui/pull/75) ([#97](https://github.com/nick42d/youtui/pull/97)) +- feat! Add oauth option for CLI back in. Resolves [#89](https://github.com/nick42d/youtui/pull/89) ([#93](https://github.com/nick42d/youtui/pull/93)) +- [**breaking**] Handle new formats for Top Results. Resolves [#87](https://github.com/nick42d/youtui/pull/87) ([#88](https://github.com/nick42d/youtui/pull/88)) +New field 'message' added to ErrorKind::Parsing to improve error output. + +### Other +- Improve README.md ([#91](https://github.com/nick42d/youtui/pull/91)) by @jonas - Closes [#90](https://github.com/nick42d/youtui/pull/90)- Update README.md + ## [0.0.7](https://github.com/nick42d/youtui/compare/youtui/v0.0.6...youtui/v0.0.7) - 2024-07-19 ### Added diff --git a/youtui/Cargo.toml b/youtui/Cargo.toml index 5940f8c3..91900217 100644 --- a/youtui/Cargo.toml +++ b/youtui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "youtui" -version = "0.0.7" +version = "0.0.8" edition = "2021" authors = ["nick42d"] license = "MIT" @@ -21,7 +21,7 @@ ratatui = { version = "0.27.0", features = ["all-widgets"] } serde = "1.0.203" serde_json = "1.0.117" tokio = "1.38.0" -ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.7", default-features = false, features = [ +ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.8", default-features = false, features = [ "rustls-tls", "simplified-queries", ] } diff --git a/ytmapi-rs/CHANGELOG.md b/ytmapi-rs/CHANGELOG.md index 3d506479..c23109c2 100644 --- a/ytmapi-rs/CHANGELOG.md +++ b/ytmapi-rs/CHANGELOG.md @@ -5,7 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.0.8](https://github.com/nick42d/youtui/compare/ytmapi-rs/v0.0.7...ytmapi-rs/v0.0.8) - 2024-07-24 +### Added +- Add commandline flag to change auth type. Resolves [#98](https://github.com/nick42d/youtui/pull/98) ([#99](https://github.com/nick42d/youtui/pull/99)) +- Implement Taste Profiles and Moods - Resolves [#75](https://github.com/nick42d/youtui/pull/75) ([#97](https://github.com/nick42d/youtui/pull/97)) +- feat! Add oauth option for CLI back in. Resolves [#89](https://github.com/nick42d/youtui/pull/89) ([#93](https://github.com/nick42d/youtui/pull/93)) +- [**breaking**] Handle new formats for Top Results. Resolves [#87](https://github.com/nick42d/youtui/pull/87) ([#88](https://github.com/nick42d/youtui/pull/88)) +New field 'message' added to ErrorKind::Parsing to improve error output. + +### Fixed +- Fix not available songs in album failing to parse ([#100](https://github.com/nick42d/youtui/pull/100)) ## [0.0.7](https://github.com/nick42d/youtui/compare/ytmapi-rs-v0.0.6...ytmapi-rs-v0.0.7) - 2024-07-19 ### Added diff --git a/ytmapi-rs/Cargo.toml b/ytmapi-rs/Cargo.toml index b8a056f2..099bb92d 100644 --- a/ytmapi-rs/Cargo.toml +++ b/ytmapi-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ytmapi-rs" -version = "0.0.7" +version = "0.0.8" edition = "2021" authors = ["nick42d"] license = "MIT"