From b9b8cbe956ad8c5793608d14345bd64a83390bd4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 20:17:31 +0800 Subject: [PATCH] chore: release (#180) * chore: release * Update changelog --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Nick Dowsett --- Cargo.lock | 8 ++++---- async-callback-manager/CHANGELOG.md | 16 ++++++++++++++++ async-callback-manager/Cargo.toml | 2 +- json-crawler/CHANGELOG.md | 5 +++++ json-crawler/Cargo.toml | 2 +- youtui/CHANGELOG.md | 9 +++++++++ youtui/Cargo.toml | 6 +++--- ytmapi-rs/CHANGELOG.md | 5 +++++ ytmapi-rs/Cargo.toml | 4 ++-- 9 files changed, 46 insertions(+), 11 deletions(-) create mode 100644 async-callback-manager/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 425a9e4..919b7ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -155,7 +155,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" [[package]] name = "async-callback-manager" -version = "0.0.1" +version = "0.0.2" dependencies = [ "crossterm", "futures", @@ -1678,7 +1678,7 @@ dependencies = [ [[package]] name = "json-crawler" -version = "0.0.3" +version = "0.0.4" dependencies = [ "serde", "serde_json", @@ -4257,7 +4257,7 @@ dependencies = [ [[package]] name = "youtui" -version = "0.0.16" +version = "0.0.17" dependencies = [ "async-callback-manager", "async_cell", @@ -4316,7 +4316,7 @@ dependencies = [ [[package]] name = "ytmapi-rs" -version = "0.0.15" +version = "0.0.16" dependencies = [ "chrono", "const_format", diff --git a/async-callback-manager/CHANGELOG.md b/async-callback-manager/CHANGELOG.md new file mode 100644 index 0000000..dbcadb6 --- /dev/null +++ b/async-callback-manager/CHANGELOG.md @@ -0,0 +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.2](https://github.com/nick42d/youtui/compare/async-callback-manager/v0.0.1...async-callback-manager/v0.0.2) - 2024-11-18 + +### Fixed +- Fixed tests breaking as unable to drain manager [#179](https://github.com/nick42d/youtui/pull/179) ([#181](https://github.com/nick42d/youtui/pull/181)) + + diff --git a/async-callback-manager/Cargo.toml b/async-callback-manager/Cargo.toml index a696b6a..694c4ee 100644 --- a/async-callback-manager/Cargo.toml +++ b/async-callback-manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-callback-manager" -version = "0.0.1" +version = "0.0.2" edition = "2021" authors = ["nick42d"] license = "MIT" diff --git a/json-crawler/CHANGELOG.md b/json-crawler/CHANGELOG.md index b2c638a..c8fac9c 100644 --- a/json-crawler/CHANGELOG.md +++ b/json-crawler/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/nick42d/youtui/compare/json-crawler/v0.0.3...json-crawler/v0.0.4) - 2024-11-18 + +### Added +- Added additional project lints only ([#178](https://github.com/nick42d/youtui/pull/178)) + ## [0.0.3](https://github.com/nick42d/youtui/compare/json-crawler/v0.0.2...json-crawler/v0.0.3) - 2024-10-26 ### Fixed diff --git a/json-crawler/Cargo.toml b/json-crawler/Cargo.toml index 2de2d23..1a9715f 100644 --- a/json-crawler/Cargo.toml +++ b/json-crawler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "json-crawler" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["nick42d"] license = "MIT" diff --git a/youtui/CHANGELOG.md b/youtui/CHANGELOG.md index 37d7b70..30c7453 100644 --- a/youtui/CHANGELOG.md +++ b/youtui/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.17](https://github.com/nick42d/youtui/compare/youtui/v0.0.16...youtui/v0.0.17) - 2024-11-18 + +### Added +- refactor task management and improve responsiveness ([#178](https://github.com/nick42d/youtui/pull/178)) + +### Fixed +- [**breaking**] Update default auth method - closes [#179](https://github.com/nick42d/youtui/pull/179) ([#181](https://github.com/nick42d/youtui/pull/181)) +- _Youtui default auth method has changed from OAuth to Browser._ + ## [0.0.16](https://github.com/nick42d/youtui/compare/youtui/v0.0.15...youtui/v0.0.16) - 2024-10-26 ### Fixed diff --git a/youtui/Cargo.toml b/youtui/Cargo.toml index ef36ebb..0a450a0 100644 --- a/youtui/Cargo.toml +++ b/youtui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "youtui" -version = "0.0.16" +version = "0.0.17" edition = "2021" authors = ["nick42d"] license = "MIT" @@ -22,11 +22,11 @@ serde = "1.0.209" serde_json = "1.0.127" tokio = "1.39.3" gag = "1.0.0" -ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.15", default-features = false, features = [ +ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.16", default-features = false, features = [ "rustls-tls", "simplified-queries", ] } -async-callback-manager = { path = "../async-callback-manager", version = "0.0.1" } +async-callback-manager = { path = "../async-callback-manager", version = "0.0.2" } tracing = "0.1.40" tracing-subscriber = "0.3.18" tui-logger = { version = "0.12.0", features = ["tracing-support"] } diff --git a/ytmapi-rs/CHANGELOG.md b/ytmapi-rs/CHANGELOG.md index 95ca757..e333ec1 100644 --- a/ytmapi-rs/CHANGELOG.md +++ b/ytmapi-rs/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.16](https://github.com/nick42d/youtui/compare/ytmapi-rs/v0.0.15...ytmapi-rs/v0.0.16) - 2024-11-18 + +### Added +- Small fixes to alternative TLS builders ([#178](https://github.com/nick42d/youtui/pull/178)) + ## [0.0.15](https://github.com/nick42d/youtui/compare/ytmapi-rs/v0.0.14...ytmapi-rs/v0.0.15) - 2024-10-26 ### Fixed diff --git a/ytmapi-rs/Cargo.toml b/ytmapi-rs/Cargo.toml index 794eebd..dcbba86 100644 --- a/ytmapi-rs/Cargo.toml +++ b/ytmapi-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ytmapi-rs" -version = "0.0.15" +version = "0.0.16" edition = "2021" authors = ["nick42d"] license = "MIT" @@ -24,7 +24,7 @@ reqwest = { version = "0.12.7", features = [ ], default-features = false } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.127" -json-crawler = { version = "0.0.3", path = "../json-crawler" } +json-crawler = { version = "0.0.4", path = "../json-crawler" } sha1 = "0.10.6" const_format = "0.2.32" chrono = "0.4.38"