diff --git a/CHANGELOG.md b/CHANGELOG.md index 9092d50..d342462 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.7](https://github.com/hseeberger/api-version/compare/v0.3.6...v0.3.7) - 2026-06-01 + +### Other + +- bump rustfmt edition to 2024 ([#88](https://github.com/hseeberger/api-version/pull/88)) + ## [0.3.6](https://github.com/hseeberger/api-version/compare/v0.3.5...v0.3.6) - 2026-05-29 ### Other diff --git a/Cargo.lock b/Cargo.lock index 52a4a7e..a95fd30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "api-version" -version = "0.3.6" +version = "0.3.7" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index a06a8fa..a5029c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "api-version" -version = "0.3.6" +version = "0.3.7" 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 " ]