Skip to content

Commit

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

* Update 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 authored Nov 18, 2024
1 parent b206a8e commit b9b8cbe
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

16 changes: 16 additions & 0 deletions async-callback-manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))


2 changes: 1 addition & 1 deletion async-callback-manager/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-callback-manager"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
authors = ["nick42d"]
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions json-crawler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion json-crawler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json-crawler"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
authors = ["nick42d"]
license = "MIT"
Expand Down
9 changes: 9 additions & 0 deletions youtui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions youtui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "youtui"
version = "0.0.16"
version = "0.0.17"
edition = "2021"
authors = ["nick42d"]
license = "MIT"
Expand All @@ -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"] }
Expand Down
5 changes: 5 additions & 0 deletions ytmapi-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions 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.15"
version = "0.0.16"
edition = "2021"
authors = ["nick42d"]
license = "MIT"
Expand All @@ -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"
Expand Down

0 comments on commit b9b8cbe

Please sign in to comment.