summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml4
-rw-r--r--trakt-core/CHANGELOG.md15
-rw-r--r--trakt-core/Cargo.toml2
-rw-r--r--trakt-macros/CHANGELOG.md10
-rw-r--r--trakt-macros/Cargo.toml2
-rw-r--r--trakt-rs/CHANGELOG.md19
-rw-r--r--trakt-rs/Cargo.toml2
7 files changed, 49 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 7a78bed..8db9333 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,5 +8,5 @@ http = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
time = { version = "0.3", features = ["formatting", "macros", "parsing", "serde"] }
-trakt-core = { path = "trakt-core", version = "0.2.0" }
-trakt-macros = { path = "trakt-macros", version = "0.1.3" }
+trakt-core = { path = "trakt-core", version = "0.2.1" }
+trakt-macros = { path = "trakt-macros", version = "0.1.4" }
diff --git a/trakt-core/CHANGELOG.md b/trakt-core/CHANGELOG.md
index 1de4760..4dbe0be 100644
--- a/trakt-core/CHANGELOG.md
+++ b/trakt-core/CHANGELOG.md
@@ -6,6 +6,21 @@ 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-core-v0.2.0...trakt-core-v0.2.1) - 2024-03-14
+
+### Added
+- adds `construct_req` function
+
+### Changed
+- upgrades `http` from 0.2 to 1
+
+### Fixed
+- incorrect display message in error
+
+### Other
+- adds codecov to docs/readme
+- updates README.md
+
## [0.2.0](https://github.com/ansg191/trakt/compare/trakt-core-v0.1.1...trakt-core-v0.2.0) - 2024-02-19
### Other
diff --git a/trakt-core/Cargo.toml b/trakt-core/Cargo.toml
index 7c8c909..832fc29 100644
--- a/trakt-core/Cargo.toml
+++ b/trakt-core/Cargo.toml
@@ -2,7 +2,7 @@
name = "trakt-core"
description = "Core library for trakt-rs"
authors = ["Anshul Gupta <ansg191@anshulg.com>"]
-version = "0.2.0"
+version = "0.2.1"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/trakt-core"
diff --git a/trakt-macros/CHANGELOG.md b/trakt-macros/CHANGELOG.md
index 2ae54d2..dfc81c8 100644
--- a/trakt-macros/CHANGELOG.md
+++ b/trakt-macros/CHANGELOG.md
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [0.1.4](https://github.com/ansg191/trakt/compare/trakt-macros-v0.1.3...trakt-macros-v0.1.4) - 2024-03-14
+
+### Fixed
+- fixes new `non_local_definitions` lint
+
+### Other
+- *(request)* changes to use `construct_req`
+- adds codecov to docs/readme
+- updates README.md
+
## [0.1.3](https://github.com/ansg191/trakt/compare/trakt-macros-v0.1.2...trakt-macros-v0.1.3) - 2024-02-19
### Other
diff --git a/trakt-macros/Cargo.toml b/trakt-macros/Cargo.toml
index ba01d32..bbed17e 100644
--- a/trakt-macros/Cargo.toml
+++ b/trakt-macros/Cargo.toml
@@ -2,7 +2,7 @@
name = "trakt-macros"
description = "Procedural macros for the trakt-rs crate"
authors = ["Anshul Gupta <ansg191@anshulg.com>"]
-version = "0.1.3"
+version = "0.1.4"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/trakt-macros"
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"