diff --git a/reqwest-middleware/CHANGELOG.md b/reqwest-middleware/CHANGELOG.md index ec0dbf0..ac38b2d 100644 --- a/reqwest-middleware/CHANGELOG.md +++ b/reqwest-middleware/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.3] - 2024-07-08 + +### Added +- Implemented `Default` on `ClientWithMiddleware` ([#179](https://github.com/TrueLayer/reqwest-middleware/pull/179)) + ## [0.3.2] - 2024-06-28 ### Added diff --git a/reqwest-middleware/Cargo.toml b/reqwest-middleware/Cargo.toml index 051aa7c..e737723 100644 --- a/reqwest-middleware/Cargo.toml +++ b/reqwest-middleware/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest-middleware" -version = "0.3.2" +version = "0.3.3" authors = ["Rodrigo Gryzinski "] edition = "2018" description = "Wrapper around reqwest to allow for client middleware chains." diff --git a/reqwest-retry/CHANGELOG.md b/reqwest-retry/CHANGELOG.md index 09778ae..1533a78 100644 --- a/reqwest-retry/CHANGELOG.md +++ b/reqwest-retry/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1] - 2024-08-08 + +### Added +- Removed dependency on `chrono` ([#170](https://github.com/TrueLayer/reqwest-middleware/pull/170)) + ## [0.6.0] - 2024-06-28 ### Added diff --git a/reqwest-retry/Cargo.toml b/reqwest-retry/Cargo.toml index 9d7f47c..e4e90a4 100644 --- a/reqwest-retry/Cargo.toml +++ b/reqwest-retry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest-retry" -version = "0.6.0" +version = "0.6.1" authors = ["Rodrigo Gryzinski "] edition = "2018" description = "Retry middleware for reqwest." diff --git a/reqwest-tracing/CHANGELOG.md b/reqwest-tracing/CHANGELOG.md index a5fa25f..43f52a4 100644 --- a/reqwest-tracing/CHANGELOG.md +++ b/reqwest-tracing/CHANGELOG.md @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.5.2] - 2024-07-15 +### Added +- Added support for OpenTelemetry `0.24` ([#171](https://github.com/TrueLayer/reqwest-middleware/pull/171)) + +### Fixed +- Fixed, `deprecated_attributes` feature, failing to compile ([#172](https://github.com/TrueLayer/reqwest-middleware/pull/172)) + +## [0.5.2] - 2024-07-15 + ### Added - Added feature flag, `deprecated_attributes`, for emitting [deprecated opentelemetry HTTP attributes](https://opentelemetry.io/docs/specs/semconv/http/migration-guide/) alongside the stable ones used by default diff --git a/reqwest-tracing/Cargo.toml b/reqwest-tracing/Cargo.toml index ae9ff85..dd4f27c 100644 --- a/reqwest-tracing/Cargo.toml +++ b/reqwest-tracing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest-tracing" -version = "0.5.2" +version = "0.5.3" authors = ["Rodrigo Gryzinski "] edition = "2018" description = "Opentracing middleware for reqwest."