diff --git a/utoipa-actix-web/CHANGELOG.md b/utoipa-actix-web/CHANGELOG.md index dc13eb76..0704e4c3 100644 --- a/utoipa-actix-web/CHANGELOG.md +++ b/utoipa-actix-web/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog - utoipa-actix-web -## Unreleased +## 0.1.0 - Oct 23 2024 ### Added diff --git a/utoipa-config/CHANGELOG.md b/utoipa-config/CHANGELOG.md index cd81671c..67d9b040 100644 --- a/utoipa-config/CHANGELOG.md +++ b/utoipa-config/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog - utoipa-config +## 0.1.2 - Oct 23 2024 + +### Changed + +* Added warning message to docs + ## 0.1.1 - Oct 16 2024 ### Fixed diff --git a/utoipa-config/Cargo.toml b/utoipa-config/Cargo.toml index 52256a26..7bbfbc69 100644 --- a/utoipa-config/Cargo.toml +++ b/utoipa-config/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "utoipa-config" description = "Config for controlling utoipa's various aspects" -version = "0.1.1" +version = "0.1.2" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/utoipa-gen/CHANGELOG.md b/utoipa-gen/CHANGELOG.md index 436f7bc0..26a9e33e 100644 --- a/utoipa-gen/CHANGELOG.md +++ b/utoipa-gen/CHANGELOG.md @@ -1,16 +1,19 @@ # Changelog - utoipa-gen -## Unreleased +## 5.1.2 - Oct 16 2024 ### Added * Add implementation for utoipa-actix-web bindings (https://github.com/juhaku/utoipa/pull/1158) +### Changed + +* Finalize actix-web utoipa bindings (https://github.com/juhaku/utoipa/pull/1160) + ## 5.1.1 - Oct 16 2024 ### Changed -* Finalize actix-web utoipa bindings (https://github.com/juhaku/utoipa/pull/1160) * Enhance no_recursion rule to apply also containers (https://github.com/juhaku/utoipa/pull/1144) ## 5.1.0 - Oct 16 2024 diff --git a/utoipa-gen/Cargo.toml b/utoipa-gen/Cargo.toml index 709fa89a..e241438f 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.1" +version = "5.1.2" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/utoipa-swagger-ui/CHANGELOG.md b/utoipa-swagger-ui/CHANGELOG.md index ab604567..39641484 100644 --- a/utoipa-swagger-ui/CHANGELOG.md +++ b/utoipa-swagger-ui/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog - utoipa-swagger-ui +## 8.0.3 - Oct 23 2024 + +### Fixed + +* Fixed version number from docs main page + ## 8.0.2 - Oct 21 2024 ### Fixed diff --git a/utoipa-swagger-ui/Cargo.toml b/utoipa-swagger-ui/Cargo.toml index 7e110e2b..13ed4908 100644 --- a/utoipa-swagger-ui/Cargo.toml +++ b/utoipa-swagger-ui/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "utoipa-swagger-ui" description = "Swagger UI for utoipa" -version = "8.0.2" +version = "8.0.3" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/utoipa/CHANGELOG.md b/utoipa/CHANGELOG.md index 2dcca83f..f8b7e62a 100644 --- a/utoipa/CHANGELOG.md +++ b/utoipa/CHANGELOG.md @@ -3,17 +3,20 @@ **`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`**. -## Unreleased +## 5.1.2 - Oct 16 2024 ### Added * Add implementation for utoipa-actix-web bindings (https://github.com/juhaku/utoipa/pull/1158) +### Changed + +* Finalize actix-web utoipa bindings (https://github.com/juhaku/utoipa/pull/1160) + ## 5.1.1 - Oct 16 2024 ### Changed -* Finalize actix-web utoipa bindings (https://github.com/juhaku/utoipa/pull/1160) * Update utoipa-gen version ## 5.1.0 - Oct 16 2024 diff --git a/utoipa/Cargo.toml b/utoipa/Cargo.toml index e56567a4..a4c48f25 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.1" +version = "5.1.2" 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.1", path = "../utoipa-gen", optional = true } +utoipa-gen = { version = "5.1.2", path = "../utoipa-gen", optional = true } indexmap = { version = "2", features = ["serde"] } [dev-dependencies]