Skip to content

Commit e5bb59f

Browse files
authored
Update next release versions (#1278)
1 parent ee1067e commit e5bb59f

File tree

16 files changed

+20
-17
lines changed

16 files changed

+20
-17
lines changed

utoipa-axum/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 4 additions & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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"

0 commit comments

Comments
 (0)