diff --git a/CHANGELOG.md b/CHANGELOG.md index 45d7a35..7469e82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.4](https://github.com/hseeberger/api-version/compare/v0.3.3...v0.3.4) - 2025-12-11 + +### Other + +- *(deps)* bump Rust to 1.92.0 ([#40](https://github.com/hseeberger/api-version/pull/40)) +- *(deps)* bump various deps ([#38](https://github.com/hseeberger/api-version/pull/38)) +- add CODEOWNERS ([#36](https://github.com/hseeberger/api-version/pull/36)) +- fix README ([#35](https://github.com/hseeberger/api-version/pull/35)) +- extend/improve Rustdoc ([#33](https://github.com/hseeberger/api-version/pull/33)) + ## [0.3.3](https://github.com/hseeberger/api-version/compare/v0.3.2...v0.3.3) - 2025-11-21 ### Other diff --git a/Cargo.lock b/Cargo.lock index a8b8ad6..c4a1831 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" [[package]] name = "api-version" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 826871d..61dec94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "api-version" -version = "0.3.3" +version = "0.3.4" edition = "2024" description = "Axum middleware to add a version prefix to request paths based on a set of versions and an optional `x-api-version` header" authors = [ "Heiko Seeberger " ]