Skip to content

Commit

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

* Improve changelogs

---------

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 authored Aug 12, 2024
1 parent cf3f0b4 commit e0de640
Show file tree
Hide file tree
Showing 7 changed files with 47 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.

15 changes: 15 additions & 0 deletions json-crawler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 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.1](https://github.com/nick42d/youtui/releases/tag/json-crawler/v0.0.1) - 2024-08-12

### Other
- Initial commit


3 changes: 2 additions & 1 deletion release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ body = """
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
\n
{%- if commit.scope -%}
- *({{commit.scope}})* {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }}{%- if commit.links %} ({% for link in commit.links %}[{{link.text}}]({{link.href}}) {% endfor -%}){% endif %}
{% else -%}
- {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }}\
{% if commit.breaking %}\n - _{{ commit.breaking_description }}_ \n{% endif %}\
{% endif -%}
{% if commit.breaking %}\n - _{{ commit.breaking_description }}_ {% endif %}
{% endfor -%}
{% endfor %}
\n
Expand Down
10 changes: 10 additions & 0 deletions youtui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.0.12](https://github.com/nick42d/youtui/compare/youtui/v0.0.11...youtui/v0.0.12) - 2024-08-12

### Fixed
- Move to new rusty_ytdl version (reduces number of downloading 403 errors), and add new scheduled test for downloading ([#134](https://github.com/nick42d/youtui/pull/134))
- Oauth refresh can no longer get cancelled ([#124](https://github.com/nick42d/youtui/pull/124))
### Other
- Update readme ([#122](https://github.com/nick42d/youtui/pull/122))


## [0.0.11](https://github.com/nick42d/youtui/compare/youtui/v0.0.10...youtui/v0.0.11) - 2024-08-05

### Added
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.11"
version = "0.0.12"
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.10", default-features = false, features = [
ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.11", default-features = false, features = [
"rustls-tls",
"simplified-queries",
] }
Expand Down
15 changes: 15 additions & 0 deletions ytmapi-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.0.11](https://github.com/nick42d/youtui/compare/ytmapi-rs/v0.0.10...ytmapi-rs/v0.0.11) - 2024-08-12

### Fixed
- Move to new rusty_ytdl version (reduces number of downloading 403 errors), and add new scheduled test for downloading ([#134](https://github.com/nick42d/youtui/pull/134))
- Account for search case where an about message exists, but results also exist. ([#131](https://github.com/nick42d/youtui/pull/131)) - Resolves [#128](https://github.com/nick42d/youtui/pull/128)
- [**breaking**] Allow for 'about' renderer in filtered search, and not having 'views' in playlists. ([#130](https://github.com/nick42d/youtui/pull/130))
- _Added new PlaylistItem types: Episode and UploadSong._

### Other
- [**breaking**] Avoid leaking `serde_json::value` / move `JsonCrawler` to its own crate ([#127](https://github.com/nick42d/youtui/pull/127))
- _ErrorKind's ArraySize, PathNotFoundInArray, PathsNotFound, Parsing and Navigation consilidated into single ErrorKind. Removed parse_upload_song_artists/album functions that had accidentally been marked pub. Removed Error::get_json_and_key function - moved to the ErrorKind itself._



## [0.0.10](https://github.com/nick42d/youtui/compare/ytmapi-rs/v0.0.9...ytmapi-rs/v0.0.10) - 2024-08-05

### 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.10"
version = "0.0.11"
edition = "2021"
authors = ["nick42d"]
license = "MIT"
Expand Down

0 comments on commit e0de640

Please sign in to comment.