Skip to content

Commit

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

* Better align with intended version numbers

---------

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 10, 2024
1 parent 62a6f88 commit 87d4456
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 27 deletions.
19 changes: 0 additions & 19 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion Cargo.lock

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

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Chrome example (Select manually and paste):
- [x] Configuration folder support (target for 0.0.1)
- [x] Implement improved download speed
- [x] Filtering (target for 0.0.3)
- [ ] Logging to a file (target for 0.0.6)
- [ ] Logging to a file
- [x] Release to AUR (target for 0.0.4)
- [x] Remove reliance on rust nightly (target for 0.0.4)
- [ ] Dbus support for media keys
Expand Down Expand Up @@ -89,12 +89,12 @@ Chrome example (Select manually and paste):
|GetLibraryArtists|[x]|[ ]|
|GetLibrarySubscriptions|[x]|[ ]|
|GetLikedSongs|[ ]||
|GetHistory|[ ]||
|GetHistory|[x]||
|AddHistoryItem|[ ]||
|RemoveHistoryItem|[ ]||
|RateSong|[ ]||
|RemoveHistoryItem|[x]||
|RateSong|[x]||
|EditSongLibraryStatus|[ ]||
|RatePlaylist|[ ]||
|RatePlaylist|[x]||
|SubscribeArtists|[ ]||
|UnsubscribeArtists|[ ]||
|GetPlaylist|[x]|[ ]|
Expand Down
26 changes: 26 additions & 0 deletions youtui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Other
- Update to latest library version

## [0.0.5](https://github.com/nick42d/youtui/compare/youtui-v0.0.4...youtui-v0.0.5) - 2024-06-27

### Added
Expand All @@ -16,3 +19,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Other
- Update dependencies ([#51](https://github.com/nick42d/youtui/pull/51)) - resolves [#43](https://github.com/nick42d/youtui/pull/43)

## [0.0.4]
### Added
- Removed nightly requirement.
- Updated to latest version of API and bumped some other dependencies.
- Added pkgbuild for AUR.
### Fixed
- Resolved #16.
## [0.0.3]
### Added
- Added filtering for browser.
- Keybinds for modal dialogs like search and filter now shown on top bar.
- Reduced number of help commands shown (e.g for list methods like Up / Down).
- Help commands now scrollable if they don't fit on the screen.
- Now able to exit app with Ctrl-C
### Fixed
- Resolved #6 and #5. Thanks @SeseMueller for the reports!
## [0.0.2]
### Added
- Added instructions to README to install with nightly rust.
## [0.0.1]
### Other
- Initial release to github / crates.io.
2 changes: 1 addition & 1 deletion youtui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ratatui = { version = "0.26.3", features = ["all-widgets"] }
serde = "1.0.203"
serde_json = "1.0.117"
tokio = "1.38.0"
ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.4" }
ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.5" }
tracing = "0.1.40"
tui-logger = { version = "0.11.1", default-features = false, features = [
"crossterm",
Expand Down
10 changes: 10 additions & 0 deletions ytmapi-rs/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.5](https://github.com/nick42d/youtui/compare/ytmapi-rs-v0.0.4...ytmapi-rs-v0.0.5) - 2024-07-10

### Added
- [**breaking**] Implement History queries and refactor 'playlist' result types ([#59](https://github.com/nick42d/youtui/pull/59)) - Resolves [#58](https://github.com/nick42d/youtui/pull/58)
- feat(api)! Implement library queries - resolves [#56](https://github.com/nick42d/youtui/pull/56) ([#57](https://github.com/nick42d/youtui/pull/57))

### Other
- Fix reqest URL on ytmapi docs
- [**breaking**] API refactoring: LibraryArtistsSortOrder renamed GetLibrarySortOrder, AlbumParams other versions removed, AlbumParams like_status removed, replaced with new field library_status, AlbumLikeStatus renamed to InLikedSongs, ParseTarget for errors modified - only types now Array or Other(String), module YoutubeResult and usage of ResultCore and YoutubeResult trait removed, add error message to ErrorKind::OtherCodeInResponse, impl_youtube_id no longer public/

## [0.0.4](https://github.com/nick42d/youtui/compare/ytmapi-rs-v0.0.3...ytmapi-rs-v0.0.4) - 2024-06-27

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

0 comments on commit 87d4456

Please sign in to comment.