Skip to content

Commit

Permalink
Update next release versions (#1278)
Browse files Browse the repository at this point in the history
  • Loading branch information
juhaku authored Jan 5, 2025
1 parent ee1067e commit e5bb59f
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 17 deletions.
2 changes: 1 addition & 1 deletion utoipa-axum/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog - utoipa-axum

## Unreleased
## 0.1.4 - Jan 6 2025

### Changed

Expand Down
2 changes: 1 addition & 1 deletion utoipa-axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "utoipa-axum"
description = "Utoipa's axum bindings for seamless integration for the two"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion utoipa-gen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog - utoipa-gen

## Unreleased
## 5.3.1 - Jan 6 2025

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion utoipa-gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "utoipa-gen"
description = "Code generation implementation for utoipa"
version = "5.3.0"
version = "5.3.1"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
5 changes: 4 additions & 1 deletion utoipa-gen/tests/openapi_derive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,10 @@ fn derive_openapi_with_include_str_description() {
))]
struct ApiDoc;

let value = serde_json::to_value(ApiDoc::openapi()).unwrap();
let mut doc = ApiDoc::openapi();
doc.info.version = "static".to_string();

let value = serde_json::to_value(doc).unwrap();
let info = value.pointer("/info");

assert_json_snapshot!(info);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ snapshot_kind: text
"name": "MIT OR Apache-2.0"
},
"title": "title override",
"version": "5.3.0"
"version": "static"
}
2 changes: 1 addition & 1 deletion utoipa-rapidoc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog - utoipa-rapidoc

## Unreleased
## 5.0.1 - Jan 6 2025

### Changed

Expand Down
2 changes: 1 addition & 1 deletion utoipa-rapidoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "utoipa-rapidoc"
description = "RapiDoc for utoipa"
edition = "2021"
version = "5.0.0"
version = "5.0.1"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["rapidoc", "openapi", "documentation"]
Expand Down
2 changes: 1 addition & 1 deletion utoipa-redoc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog - utoipa-redoc

## Unreleased
## 5.0.1 - Jan 6 2025

### Changed

Expand Down
2 changes: 1 addition & 1 deletion utoipa-redoc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "utoipa-redoc"
description = "Redoc for utoipa"
version = "5.0.0"
version = "5.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion utoipa-scalar/CHANAGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog - utoipa-scalar

## Unreleased
## 0.2.1 - Jan 6 2025

### Changed

Expand Down
2 changes: 1 addition & 1 deletion utoipa-scalar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "utoipa-scalar"
description = "Scalar for utoipa"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion utoipa-swagger-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog - utoipa-swagger-ui

## Unreleased
## 8.1.1 - Jan 6 2025

### Changed

Expand Down
2 changes: 1 addition & 1 deletion utoipa-swagger-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "utoipa-swagger-ui"
description = "Swagger UI for utoipa"
version = "8.1.0"
version = "8.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion utoipa/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**`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.3.1 - Jan 6 2025

### Changed

Expand Down
4 changes: 2 additions & 2 deletions utoipa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "utoipa"
description = "Compile time generated OpenAPI documentation for Rust"
version = "5.3.0"
version = "5.3.1"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -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.3.0", path = "../utoipa-gen", optional = true }
utoipa-gen = { version = "5.3.1", path = "../utoipa-gen", optional = true }
indexmap = { version = "2", features = ["serde"] }

[dev-dependencies]
Expand Down

0 comments on commit e5bb59f

Please sign in to comment.