diff --git a/Cargo.lock b/Cargo.lock index 884edef0..85ceb20b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4295,7 +4295,7 @@ dependencies = [ [[package]] name = "youtui" -version = "0.0.4" +version = "0.0.5" dependencies = [ "clap", "crossterm", @@ -4318,7 +4318,7 @@ dependencies = [ [[package]] name = "ytmapi-rs" -version = "0.0.3" +version = "0.0.4" dependencies = [ "async-stream", "chrono", diff --git a/youtui/CHANGELOG.md b/youtui/CHANGELOG.md new file mode 100644 index 00000000..f619d1aa --- /dev/null +++ b/youtui/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog +All notable changes to this project will be documented in this file. + +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.5](https://github.com/nick42d/youtui/compare/youtui-v0.0.4...youtui-v0.0.5) - 2024-06-27 + +### Added +- [**breaking**] Added Playlist query functions to API + +### Fixed +- Resolve visual glitch with table heading [#52](https://github.com/nick42d/youtui/pull/52) ([#53](https://github.com/nick42d/youtui/pull/53)) + +### Other +- Update dependencies ([#51](https://github.com/nick42d/youtui/pull/51)) - resolves [#43](https://github.com/nick42d/youtui/pull/43) diff --git a/youtui/Cargo.toml b/youtui/Cargo.toml index 565e821c..ff42fecd 100644 --- a/youtui/Cargo.toml +++ b/youtui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "youtui" -version = "0.0.4" +version = "0.0.5" 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.3" } +ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.4" } 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 57356990..0cc72be6 100644 --- a/ytmapi-rs/CHANGELOG.md +++ b/ytmapi-rs/CHANGELOG.md @@ -1,3 +1,16 @@ +# Changelog +All notable changes to this project will be documented in this file. + +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.4](https://github.com/nick42d/youtui/compare/ytmapi-rs-v0.0.3...ytmapi-rs-v0.0.4) - 2024-06-27 + +### Added +- [**breaking**] Added Playlist query functions to API +- Remove OpenSSL dependency on Linux. Resolves [#42](https://github.com/nick42d/youtui/pull/42) ([#44](https://github.com/nick42d/youtui/pull/44)) # v0.0.2 - Improved error handling. - Provisioned for specialisation over Auth type. diff --git a/ytmapi-rs/Cargo.toml b/ytmapi-rs/Cargo.toml index a44a77d7..b75d598c 100644 --- a/ytmapi-rs/Cargo.toml +++ b/ytmapi-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ytmapi-rs" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["nick42d"] license = "MIT"