diff --git a/Cargo.lock b/Cargo.lock index a2f26642..c348ff67 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4259,7 +4259,7 @@ dependencies = [ [[package]] name = "youtui" -version = "0.0.10" +version = "0.0.11" dependencies = [ "clap", "crossterm", @@ -4328,7 +4328,7 @@ dependencies = [ [[package]] name = "ytmapi-rs" -version = "0.0.9" +version = "0.0.10" dependencies = [ "async-stream", "chrono", diff --git a/release-plz.toml b/release-plz.toml index f1c29ed8..24aec66a 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -5,7 +5,8 @@ git_tag_name = "{{ package }}/v{{ version }}" # This is based off the default, but adds breaking change description. # https://release-plz.ieni.dev/docs/config#the-body-field body = """ -## \n[{{ version | trim_start_matches(pat="v") }}]{%- if release_link -%}({{ release_link }}){% endif %} - {{ timestamp | date(format="%Y-%m-%d") }} +\n +## [{{ version | trim_start_matches(pat="v") }}]{%- if release_link -%}({{ release_link }}){% endif %} - {{ timestamp | date(format="%Y-%m-%d") }} {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | upper_first }} {% for commit in commits %} @@ -17,4 +18,5 @@ body = """ {% endif -%} {% endfor -%} {% endfor %} +\n """ diff --git a/youtui/CHANGELOG.md b/youtui/CHANGELOG.md index 2ac7a7f0..dd258178 100644 --- a/youtui/CHANGELOG.md +++ b/youtui/CHANGELOG.md @@ -5,6 +5,19 @@ 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.11](https://github.com/nick42d/youtui/compare/youtui/v0.0.10...youtui/v0.0.11) - 2024-08-05 + +### Added +- [**breaking**] Return dates and FeedbackTokenRemoveFromHistory from GetHistoryQuery. Closes [#109](https://github.com/nick42d/youtui/pull/109) ([#121](https://github.com/nick42d/youtui/pull/121)) +- _Changed type returned from GetHistoryQuery, removed new unused types TableListItem, TableListVideo and TableListEpisode._ +- [**breaking**] Implement Oauth option for TUI. Resolves [#92](https://github.com/nick42d/youtui/pull/92) ([#104](https://github.com/nick42d/youtui/pull/104)) +- _Changed default authentication to Oauth - you will receive an error on first startup. See README.md for more details._ + +### Fixed +- Fix unable to play songs that had a retried download ([#120](https://github.com/nick42d/youtui/pull/120)) +- Resolve cant skip if current track is in error ([#119](https://github.com/nick42d/youtui/pull/119)) - Resolves [#118](https://github.com/nick42d/youtui/pull/118) + ## [0.0.10](https://github.com/nick42d/youtui/compare/youtui/v0.0.9...youtui/v0.0.10) - 2024-08-03 ### Fixed diff --git a/youtui/Cargo.toml b/youtui/Cargo.toml index 29e6fc76..446fc961 100644 --- a/youtui/Cargo.toml +++ b/youtui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "youtui" -version = "0.0.10" +version = "0.0.11" 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.9", default-features = false, features = [ +ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.10", default-features = false, features = [ "rustls-tls", "simplified-queries", ] } diff --git a/ytmapi-rs/CHANGELOG.md b/ytmapi-rs/CHANGELOG.md index df501bbb..78ce0feb 100644 --- a/ytmapi-rs/CHANGELOG.md +++ b/ytmapi-rs/CHANGELOG.md @@ -5,6 +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.10](https://github.com/nick42d/youtui/compare/ytmapi-rs/v0.0.9...ytmapi-rs/v0.0.10) - 2024-08-05 + +### Added +- [**breaking**] Return dates and FeedbackTokenRemoveFromHistory from GetHistoryQuery. Closes [#109](https://github.com/nick42d/youtui/pull/109) ([#121](https://github.com/nick42d/youtui/pull/121)) +- _Changed type returned from GetHistoryQuery, removed new unused types TableListItem, TableListVideo and TableListEpisode._ + +### Fixed +- fix! Correct feature gateing / docs for builder ([#111](https://github.com/nick42d/youtui/pull/111)) +_Removes YtMusicBuilder::with_rustls_tls unless rustls-tls feature is selected._ + ## [0.0.9](https://github.com/nick42d/youtui/compare/ytmapi-rs/v0.0.8...ytmapi-rs/v0.0.9) - 2024-07-31 ### Added diff --git a/ytmapi-rs/Cargo.toml b/ytmapi-rs/Cargo.toml index e40cbd19..14ce171a 100644 --- a/ytmapi-rs/Cargo.toml +++ b/ytmapi-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ytmapi-rs" -version = "0.0.9" +version = "0.0.10" edition = "2021" authors = ["nick42d"] license = "MIT"