diff --git a/CHANGELOG.md b/CHANGELOG.md index bd9606d..7049f44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0] - 2026-03-17 + +### Added + +- `native-tls` feature that enable TLS functionality provided by `native-tls` +- structured logging for url and HTTP verbe + +### Changed + +- Breaking: the default TLS provider is now `rustls`, following the new `reqwest` 0.13 default. For people who still want use the native provider, a new `native-tls` features as been added. +- some log has been downgraded from `debug` to `trace` + +### Fixed + +- `reqwest` is no longer an optional dependency anymore. + ## [0.6.1] - 2024-12-12 ### Fixed @@ -178,7 +194,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[unreleased]: https://github.com/jmgilman/rustify/compare/v0.5.4..HEAD +[unreleased]: https://github.com/jmgilman/rustify/compare/v0.7.0..HEAD +[0.7.0]: https://github.com/jmgilman/rustify/releases/tag/v0.7.0 +[0.6.1]: https://github.com/jmgilman/rustify/releases/tag/v0.6.1 [0.5.4]: https://github.com/jmgilman/rustify/releases/tag/v0.5.4 [0.5.3]: https://github.com/jmgilman/rustify/releases/tag/v0.4.4 [0.5.2]: https://github.com/jmgilman/rustify/releases/tag/v0.5.2 diff --git a/Cargo.toml b/Cargo.toml index 693db48..ea90e92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustify" -version = "0.6.1" +version = "0.7.0" authors = ["Joshua Gilman "] description = "A Rust library for interacting with HTTP API endpoints." license = "MIT" @@ -30,7 +30,7 @@ async-trait = "0.1.52" bytes = "1.1.0" http = "1" reqwest = { version = "0.13.0", default-features = false } -rustify_derive = { version = "0.5.4", path = "rustify_derive" } +rustify_derive = { version = "0.5.5", path = "rustify_derive" } serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.79" serde_urlencoded = "0.7.1" diff --git a/README.md b/README.md index 4f5c854..c055066 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ Add rustify as a dependency to your cargo.toml: ```toml [dependencies] -rustify = "0.6.1" -rustify_derive = "0.5.4" +rustify = "0.7.0" +rustify_derive = "0.5.5" ``` ## Usage diff --git a/rustify_derive/Cargo.toml b/rustify_derive/Cargo.toml index 91303cc..e95b14e 100644 --- a/rustify_derive/Cargo.toml +++ b/rustify_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustify_derive" -version = "0.5.4" +version = "0.5.5" authors = ["Joshua Gilman "] description = "A derive macro for implementing an Endpoint for rustify" license = "MIT"