diff --git a/utoipa-gen/CHANGELOG.md b/utoipa-gen/CHANGELOG.md index a584d7af..e8e8dcb8 100644 --- a/utoipa-gen/CHANGELOG.md +++ b/utoipa-gen/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog - utoipa-gen -## Unreleased +## 5.1.3 - Oct 27 2024 ### Fixed diff --git a/utoipa-gen/Cargo.toml b/utoipa-gen/Cargo.toml index e241438f..d6de1574 100644 --- a/utoipa-gen/Cargo.toml +++ b/utoipa-gen/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "utoipa-gen" description = "Code generation implementation for utoipa" -version = "5.1.2" +version = "5.1.3" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/utoipa/CHANGELOG.md b/utoipa/CHANGELOG.md index f8b7e62a..e6c50713 100644 --- a/utoipa/CHANGELOG.md +++ b/utoipa/CHANGELOG.md @@ -3,6 +3,12 @@ **`utoipa`** is in direct correlation with **`utoipa-gen`** ([CHANGELOG.md](../utoipa-gen/CHANGELOG.md)). You might want to look into changes introduced to **`utoipa-gen`**. +## 5.1.3 - Oct 27 2024 + +### Changed + +* Updated `utoipa-gen` version + ## 5.1.2 - Oct 16 2024 ### Added diff --git a/utoipa/Cargo.toml b/utoipa/Cargo.toml index a4c48f25..2a41b0ba 100644 --- a/utoipa/Cargo.toml +++ b/utoipa/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "utoipa" description = "Compile time generated OpenAPI documentation for Rust" -version = "5.1.2" +version = "5.1.3" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" @@ -52,7 +52,7 @@ auto_into_responses = ["utoipa-gen?/auto_into_responses"] serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0" } serde_yaml = { version = "0.9", optional = true } -utoipa-gen = { version = "5.1.2", path = "../utoipa-gen", optional = true } +utoipa-gen = { version = "5.1.3", path = "../utoipa-gen", optional = true } indexmap = { version = "2", features = ["serde"] } [dev-dependencies]