Skip to content

Commit

Permalink
chore: release (#117)
Browse files Browse the repository at this point in the history
* chore: release

* Tweak changelog

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Nick Dowsett <[email protected]>
  • Loading branch information
github-actions[bot] and nick42d committed Aug 5, 2024
1 parent 04c3e63 commit d50e0f4
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand All @@ -17,4 +18,5 @@ body = """
{% endif -%}
{% endfor -%}
{% endfor %}
\n
"""
13 changes: 13 additions & 0 deletions youtui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions youtui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "youtui"
version = "0.0.10"
version = "0.0.11"
edition = "2021"
authors = ["nick42d"]
license = "MIT"
Expand All @@ -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",
] }
Expand Down
11 changes: 11 additions & 0 deletions ytmapi-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ytmapi-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ytmapi-rs"
version = "0.0.9"
version = "0.0.10"
edition = "2021"
authors = ["nick42d"]
license = "MIT"
Expand Down

0 comments on commit d50e0f4

Please sign in to comment.