diff --git a/CHANGELOG.md b/CHANGELOG.md index b356600..c672a27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.3.0] - 2025-02-02 + +### Changed + +- Uses the `http` crate structs to represent the HTTP model (`Request`, `Response`, `StatusCode`...) instead of the ones + defined by `oxhttp`. Only the `Body` struct is implemented by `oxhttp`. +- The `rustls-*-native` features now rely on the `rustls-platform-verifier` crate to support certificate revocation. + The now redundant `rustls-*-platform-verifier` features have been removed. + ## [0.2.7] - 2024-12-23 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 5fb0175..3a63583 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxhttp" -version = "0.3.0-dev" +version = "0.3.0" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md"