diff options
Diffstat (limited to 'trakt-rs')
-rw-r--r-- | trakt-rs/CHANGELOG.md | 19 | ||||
-rw-r--r-- | trakt-rs/Cargo.toml | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/trakt-rs/CHANGELOG.md b/trakt-rs/CHANGELOG.md index dfa5dce..0af627d 100644 --- a/trakt-rs/CHANGELOG.md +++ b/trakt-rs/CHANGELOG.md @@ -6,6 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/ansg191/trakt/compare/trakt-rs-v0.2.0...trakt-rs-v0.2.1) - 2024-03-14 + +### Added +- switches from `smol_str` to `compact_str` +- *(api)* adds scrobble endpoints +- *(api)* adds search endpoints + +### Changed +- upgrades `http` from 0.2 to 1 + +### Other +- switches from reqwest to ureq for tests +- Revert "Upgrades to http 1" +- switches from reqwest to ureq for tests +- *(clippy)* fixes `module_inception` lint +- replaces requests with `construct_req` +- adds codecov to docs/readme +- updates README.md + ## [0.2.0](https://github.com/ansg191/trakt/compare/trakt-rs-v0.1.2...trakt-rs-v0.2.0) - 2024-02-19 ### Other diff --git a/trakt-rs/Cargo.toml b/trakt-rs/Cargo.toml index bda8f1b..e480e5e 100644 --- a/trakt-rs/Cargo.toml +++ b/trakt-rs/Cargo.toml @@ -2,7 +2,7 @@ name = "trakt-rs" description = "A Rust library for the Trakt.tv API" authors = ["Anshul Gupta <ansg191@anshulg.com>"] -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT" documentation = "https://docs.rs/trakt-rs" |