diff --git a/Cargo.lock b/Cargo.lock index 46b84c98..623b486d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4295,7 +4295,7 @@ dependencies = [ [[package]] name = "youtui" -version = "0.0.5" +version = "0.0.6" dependencies = [ "clap", "crossterm", @@ -4318,7 +4318,7 @@ dependencies = [ [[package]] name = "ytmapi-rs" -version = "0.0.5" +version = "0.0.6" dependencies = [ "async-stream", "chrono", diff --git a/youtui/CHANGELOG.md b/youtui/CHANGELOG.md index 466178b4..ce183504 100644 --- a/youtui/CHANGELOG.md +++ b/youtui/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/nick42d/youtui/compare/youtui-v0.0.5...youtui-v0.0.6) - 2024-07-11 + +### Added +- Implement EditSongLibraryStatus (Resolves [#63](https://github.com/nick42d/youtui/pull/63)) ([#64](https://github.com/nick42d/youtui/pull/64)) +- [**breaking**] Implement History queries and refactor 'playlist' result types ([#59](https://github.com/nick42d/youtui/pull/59)) - Resolves [#58](https://github.com/nick42d/youtui/pull/58) +- feat(api)! Implement library queries - resolves [#56](https://github.com/nick42d/youtui/pull/56) ([#57](https://github.com/nick42d/youtui/pull/57)) + +### Other +- Seperate live integration tests from local tests - resolves [#61](https://github.com/nick42d/youtui/pull/61) ([#65](https://github.com/nick42d/youtui/pull/65)) +- release ([#54](https://github.com/nick42d/youtui/pull/54)) +- Fix table on README + ### Other - Update to latest library version diff --git a/youtui/Cargo.toml b/youtui/Cargo.toml index cc6b0b2e..cf3a409f 100644 --- a/youtui/Cargo.toml +++ b/youtui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "youtui" -version = "0.0.5" +version = "0.0.6" edition = "2021" authors = ["nick42d"] license = "MIT" @@ -21,7 +21,7 @@ ratatui = { version = "0.26.3", features = ["all-widgets"] } serde = "1.0.203" serde_json = "1.0.117" tokio = "1.38.0" -ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.5" } +ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.6" } tracing = "0.1.40" tui-logger = { version = "0.11.1", default-features = false, features = [ "crossterm", diff --git a/ytmapi-rs/CHANGELOG.md b/ytmapi-rs/CHANGELOG.md index bd0cf772..bbaf16a7 100644 --- a/ytmapi-rs/CHANGELOG.md +++ b/ytmapi-rs/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/nick42d/youtui/compare/ytmapi-rs-v0.0.5...ytmapi-rs-v0.0.6) - 2024-07-11 + +### Added +- Implement EditSongLibraryStatus (Resolves [#63](https://github.com/nick42d/youtui/pull/63)) ([#64](https://github.com/nick42d/youtui/pull/64)) + +### Other +- Seperate live integration tests from local tests - resolves [#61](https://github.com/nick42d/youtui/pull/61) ([#65](https://github.com/nick42d/youtui/pull/65)) + ## [0.0.5](https://github.com/nick42d/youtui/compare/ytmapi-rs-v0.0.4...ytmapi-rs-v0.0.5) - 2024-07-10 ### Added diff --git a/ytmapi-rs/Cargo.toml b/ytmapi-rs/Cargo.toml index 1284f22e..78e82b2e 100644 --- a/ytmapi-rs/Cargo.toml +++ b/ytmapi-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ytmapi-rs" -version = "0.0.5" +version = "0.0.6" edition = "2021" authors = ["nick42d"] license = "MIT"