Skip to content

Commit 49689fc

Browse files
committed
Update next release versions
1 parent ee1067e commit 49689fc

16 files changed

+20
-17
lines changed

utoipa-axum/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog - utoipa-axum
22

3-
## Unreleased
3+
## 0.1.4 - Jan 6 2025
44

55
### Changed
66

utoipa-axum/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "utoipa-axum"
33
description = "Utoipa's axum bindings for seamless integration for the two"
4-
version = "0.1.3"
4+
version = "0.1.4"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

utoipa-gen/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog - utoipa-gen
22

3-
## Unreleased
3+
## 5.3.1 - Jan 6 2025
44

55
### Fixed
66

utoipa-gen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "utoipa-gen"
33
description = "Code generation implementation for utoipa"
4-
version = "5.3.0"
4+
version = "5.3.1"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

utoipa-gen/tests/openapi_derive.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,10 @@ fn derive_openapi_with_include_str_description() {
251251
))]
252252
struct ApiDoc;
253253

254-
let value = serde_json::to_value(ApiDoc::openapi()).unwrap();
254+
let mut doc = ApiDoc::openapi();
255+
doc.info.version = "static".to_string();
256+
257+
let value = serde_json::to_value(doc).unwrap();
255258
let info = value.pointer("/info");
256259

257260
assert_json_snapshot!(info);

utoipa-gen/tests/snapshots/openapi_derive__derive_openapi_with_include_str_description.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ snapshot_kind: text
1313
"name": "MIT OR Apache-2.0"
1414
},
1515
"title": "title override",
16-
"version": "5.3.0"
16+
"version": "static"
1717
}

utoipa-rapidoc/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog - utoipa-rapidoc
22

3-
## Unreleased
3+
## 5.0.1 - Jan 6 2025
44

55
### Changed
66

utoipa-rapidoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "utoipa-rapidoc"
33
description = "RapiDoc for utoipa"
44
edition = "2021"
5-
version = "5.0.0"
5+
version = "5.0.1"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
88
keywords = ["rapidoc", "openapi", "documentation"]

utoipa-redoc/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog - utoipa-redoc
22

3-
## Unreleased
3+
## 5.0.1 - Jan 6 2025
44

55
### Changed
66

utoipa-redoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "utoipa-redoc"
33
description = "Redoc for utoipa"
4-
version = "5.0.0"
4+
version = "5.0.1"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

utoipa-scalar/CHANAGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog - utoipa-scalar
22

3-
## Unreleased
3+
## 0.2.1 - Jan 6 2025
44

55
### Changed
66

utoipa-scalar/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "utoipa-scalar"
33
description = "Scalar for utoipa"
4-
version = "0.2.0"
4+
version = "0.2.1"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

utoipa-swagger-ui/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog - utoipa-swagger-ui
22

3-
## Unreleased
3+
## 8.1.1 - Jan 6 2025
44

55
### Changed
66

utoipa-swagger-ui/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "utoipa-swagger-ui"
33
description = "Swagger UI for utoipa"
4-
version = "8.1.0"
4+
version = "8.1.1"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

utoipa/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**`utoipa`** is in direct correlation with **`utoipa-gen`** ([CHANGELOG.md](../utoipa-gen/CHANGELOG.md)). You might want
44
to look into changes introduced to **`utoipa-gen`**.
55

6-
## Unreleased
6+
## 5.3.1 - Jan 6 2025
77

88
### Changed
99

utoipa/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "utoipa"
33
description = "Compile time generated OpenAPI documentation for Rust"
4-
version = "5.3.0"
4+
version = "5.3.1"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
@@ -52,7 +52,7 @@ auto_into_responses = ["utoipa-gen?/auto_into_responses"]
5252
serde = { version = "1.0", features = ["derive"] }
5353
serde_json = { version = "1.0" }
5454
serde_yaml = { version = "0.9", optional = true }
55-
utoipa-gen = { version = "5.3.0", path = "../utoipa-gen", optional = true }
55+
utoipa-gen = { version = "5.3.1", path = "../utoipa-gen", optional = true }
5656
indexmap = { version = "2", features = ["serde"] }
5757

5858
[dev-dependencies]

0 commit comments

Comments
 (0)