Skip to content

Commit

Permalink
chore: release (#71)
Browse files Browse the repository at this point in the history
* chore: release
* Only release ytmapi-rs, and fix tui-logger/ratatui conflict

---------

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 Jul 19, 2024
1 parent 52bddc7 commit 39e2bfc
Show file tree
Hide file tree
Showing 7 changed files with 70 additions and 39 deletions.
75 changes: 43 additions & 32 deletions Cargo.lock

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

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]

### Added
- feat! Move convenience functions behind feature gate and add documentation. Resolves [#76](https://github.com/nick42d/youtui/pull/76) ([#81](https://github.com/nick42d/youtui/pull/81))
- Implment mechanism to force use of tls selection, and utilise new mechanism in youtui - resolves [#30](https://github.com/nick42d/youtui/pull/30) ([#80](https://github.com/nick42d/youtui/pull/80))
- [**breaking**] Allow specialisation of queries depending on the Token ([#79](https://github.com/nick42d/youtui/pull/79))
- Implement DeleteUploadEntity ([#73](https://github.com/nick42d/youtui/pull/73))
- [**breaking**] Implement get library upload queries - resolves [#66](https://github.com/nick42d/youtui/pull/66) ([#70](https://github.com/nick42d/youtui/pull/70))

### Fixed
- youtui: Correctly use rustls over openssl ([#78](https://github.com/nick42d/youtui/pull/78))

## [0.0.6](https://github.com/nick42d/youtui/compare/youtui-v0.0.5...youtui-v0.0.6) - 2024-07-13

### Other
Expand Down
7 changes: 4 additions & 3 deletions youtui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@ rust-version = "1.79"
clap = { version = "4.5.7", features = ["derive"] }
crossterm = { version = "0.27", features = ["event-stream"] }
futures = "0.3.30"
ratatui = { version = "0.26.3", features = ["all-widgets"] }
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.6", default-features = false, features = [
ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.7", default-features = false, features = [
"rustls-tls",
"simplified-queries",
] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tui-logger = { version = "0.11.1", default-features = false, features = [
tui-logger = { version = "0.11.2", default-features = false, features = [
"crossterm",
"tracing-support",
] }
Expand Down
2 changes: 1 addition & 1 deletion youtui/src/app/ui/draw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ fn draw_generic_scrollable_table<'a, T: IntoIterator<Item = Row<'a>>>(
.content_length(scrollable_lines);
f.render_stateful_widget(
scrollbar,
chunk.inner(&Margin {
chunk.inner(Margin {
vertical: 1,
horizontal: 0,
}),
Expand Down
4 changes: 2 additions & 2 deletions youtui/src/app/view/draw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ where
.content_length(scrollable_lines);
f.render_stateful_widget(
scrollbar,
chunk.inner(&Margin {
chunk.inner(Margin {
vertical: 1,
horizontal: 0,
}),
Expand Down Expand Up @@ -243,7 +243,7 @@ pub fn draw_sortable_table<T>(
.content_length(scrollable_lines);
f.render_stateful_widget(
scrollbar,
chunk.inner(&Margin {
chunk.inner(Margin {
vertical: 1,
horizontal: 0,
}),
Expand Down
9 changes: 9 additions & 0 deletions ytmapi-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.7](https://github.com/nick42d/youtui/compare/ytmapi-rs-v0.0.6...ytmapi-rs-v0.0.7) - 2024-07-19

### Added
- feat! Move convenience functions behind feature gate and add documentation. Resolves [#76](https://github.com/nick42d/youtui/pull/76) ([#81](https://github.com/nick42d/youtui/pull/81))
- feat: Implment mechanism to force use of tls selection - resolves [#30](https://github.com/nick42d/youtui/pull/30) ([#80](https://github.com/nick42d/youtui/pull/80))
- [**breaking**] Allow specialisation of queries depending on the Token ([#79](https://github.com/nick42d/youtui/pull/79))
- feat: Implement DeleteUploadEntity ([#73](https://github.com/nick42d/youtui/pull/73))
- [**breaking**] Implement get library upload queries - resolves [#66](https://github.com/nick42d/youtui/pull/66) ([#70](https://github.com/nick42d/youtui/pull/70))

## [0.0.6](https://github.com/nick42d/youtui/compare/ytmapi-rs-v0.0.5...ytmapi-rs-v0.0.6) - 2024-07-13

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

0 comments on commit 39e2bfc

Please sign in to comment.