diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b6806a..b92668c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.3](https://github.com/Arkptz/mitm2openapi/compare/v0.5.2...v0.5.3) - 2026-05-27 + +### Fixed + +- *(mitmproxy)* decompress response bodies based on content-encoding header ([#47](https://github.com/Arkptz/mitm2openapi/pull/47)) + ## [0.5.1](https://github.com/Arkptz/mitm2openapi/compare/v0.5.0...v0.5.1) - 2026-04-22 ### Other diff --git a/Cargo.lock b/Cargo.lock index 9234f73..6771fb8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -605,7 +605,7 @@ dependencies = [ [[package]] name = "mitm2openapi" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 3bad8e3..ee49368 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mitm2openapi" -version = "0.5.2" +version = "0.5.3" edition = "2021" authors = ["Arkptz "] description = "Convert mitmproxy flow dumps and HAR files to OpenAPI 3.0 specs — fast Rust rewrite of mitmproxy2swagger"