Skip to content

Commit 3f37a25

Browse files
committed
Update openapi visualization bindings versions
1 parent e8125c8 commit 3f37a25

File tree

16 files changed

+44
-20
lines changed

16 files changed

+44
-20
lines changed

utoipa-rapidoc/CHANGELOG.md

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

3+
## 6.0.0 - Thu 16 2025
4+
5+
### Changed
6+
7+
* Re-release 5.0.1 since axum upgrade is a breaking change (https://github.com/juhaku/utoipa/pull/1295)
8+
39
## 5.0.1 - Jan 6 2025
410

511
### Changed

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.1"
5+
version = "6.0.0"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
88
keywords = ["rapidoc", "openapi", "documentation"]

utoipa-rapidoc/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ You may find fullsize examples from utoipa's Github [repository][examples].
2424
Use RapiDoc only without any boiler plate implementation.
2525
```toml
2626
[dependencies]
27-
utoipa-rapidoc = "5"
27+
utoipa-rapidoc = "6"
2828
```
2929

3030
Enable actix-web integration with RapiDoc.
3131
```toml
3232
[dependencies]
33-
utoipa-rapidoc = { version = "5", features = ["actix-web"] }
33+
utoipa-rapidoc = { version = "6", features = ["actix-web"] }
3434
```
3535

3636
# Using standalone

utoipa-rapidoc/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
//! Use RapiDoc only without any boiler plate implementation.
2121
//! ```toml
2222
//! [dependencies]
23-
//! utoipa-rapidoc = "4"
23+
//! utoipa-rapidoc = "6"
2424
//! ```
2525
//!
2626
//! Enable actix-web integration with RapiDoc.
2727
//! ```toml
2828
//! [dependencies]
29-
//! utoipa-rapidoc = { version = "4", features = ["actix-web"] }
29+
//! utoipa-rapidoc = { version = "6", features = ["actix-web"] }
3030
//! ```
3131
//!
3232
//! # Using standalone

utoipa-redoc/CHANGELOG.md

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

3+
## 6.0.0 - Thu 16 2025
4+
5+
### Changed
6+
7+
* Re-release 5.0.1 since axum upgrade is a breaking change (https://github.com/juhaku/utoipa/pull/1295)
8+
39
## 5.0.1 - Jan 6 2025
410

511
### Changed

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.1"
4+
version = "6.0.0"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

utoipa-redoc/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ You may find fullsize examples from utoipa's Github [repository][examples].
2424
Use Redoc only without any boiler plate implementation.
2525
```toml
2626
[dependencies]
27-
utoipa-redoc = "5"
27+
utoipa-redoc = "6"
2828
```
2929

3030
Enable actix-web integration with Redoc.
3131
```toml
3232
[dependencies]
33-
utoipa-redoc = { version = "5", features = ["actix-web"] }
33+
utoipa-redoc = { version = "6", features = ["actix-web"] }
3434
```
3535

3636
# Using standalone

utoipa-redoc/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
//! Use Redoc only without any boiler plate implementation.
2121
//! ```toml
2222
//! [dependencies]
23-
//! utoipa-redoc = "4"
23+
//! utoipa-redoc = "6"
2424
//! ```
2525
//!
2626
//! Enable actix-web integration with Redoc.
2727
//! ```toml
2828
//! [dependencies]
29-
//! utoipa-redoc = { version = "4", features = ["actix-web"] }
29+
//! utoipa-redoc = { version = "6", features = ["actix-web"] }
3030
//! ```
3131
//!
3232
//! # Using standalone

utoipa-scalar/CHANAGELOG.md

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

3+
## 0.3.0 - Thu 16 2025
4+
5+
### Changed
6+
7+
* Re-release 0.2.1 since axum upgrade is a breaking change (https://github.com/juhaku/utoipa/pull/1295)
8+
39
## 0.2.1 - Jan 6 2025
410

511
### Changed

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.1"
4+
version = "0.3.0"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

utoipa-scalar/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ You may find fullsize examples from utoipa's Github [repository][examples].
2424
Use Scalar only without any boiler plate implementation.
2525
```toml
2626
[dependencies]
27-
utoipa-scalar = "0.2"
27+
utoipa-scalar = "0.3"
2828
```
2929

3030
Enable actix-web integration with Scalar.
3131
```toml
3232
[dependencies]
33-
utoipa-scalar = { version = "0.2", features = ["actix-web"] }
33+
utoipa-scalar = { version = "0.3", features = ["actix-web"] }
3434
```
3535

3636
# Using standalone

utoipa-scalar/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
//! Use Scalar only without any boiler plate implementation.
2121
//! ```toml
2222
//! [dependencies]
23-
//! utoipa-scalar = "0.1"
23+
//! utoipa-scalar = "0.3"
2424
//! ```
2525
//!
2626
//! Enable actix-web integration with Scalar.
2727
//! ```toml
2828
//! [dependencies]
29-
//! utoipa-scalar = { version = "0.1", features = ["actix-web"] }
29+
//! utoipa-scalar = { version = "0.3", features = ["actix-web"] }
3030
//! ```
3131
//!
3232
//! # Using standalone

utoipa-swagger-ui/CHANGELOG.md

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

3+
## 9.0.0 - Thu 16 2025
4+
5+
### Changed
6+
7+
* Re-release 8.1.1 since axum upgrade is a breaking change (https://github.com/juhaku/utoipa/pull/1295)
8+
39
## 8.1.1 - Jan 6 2025
410

511
### Changed

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.1"
4+
version = "9.0.0"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

utoipa-swagger-ui/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ Use only the raw types without any boilerplate implementation.
4343

4444
```toml
4545
[dependencies]
46-
utoipa-swagger-ui = "8"
46+
utoipa-swagger-ui = "9"
4747
```
4848

4949
Enable actix-web framework with Swagger UI you could define the dependency as follows.
5050

5151
```toml
5252
[dependencies]
53-
utoipa-swagger-ui = { version = "8", features = ["actix-web"] }
53+
utoipa-swagger-ui = { version = "9", features = ["actix-web"] }
5454
```
5555

5656
**Note!** Also remember that you already have defined `utoipa` dependency in your `Cargo.toml`

utoipa-swagger-ui/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
//! Use only the raw types without any boiler plate implementation.
3838
//! ```toml
3939
//! [dependencies]
40-
//! utoipa-swagger-ui = "8"
40+
//! utoipa-swagger-ui = "9"
4141
//! ```
4242
//!
4343
//! Enable actix-web framework with Swagger UI you could define the dependency as follows.
4444
//! ```toml
4545
//! [dependencies]
46-
//! utoipa-swagger-ui = { version = "8", features = ["actix-web"] }
46+
//! utoipa-swagger-ui = { version = "9", features = ["actix-web"] }
4747
//! ```
4848
//!
4949
//! **Note!** Also remember that you already have defined `utoipa` dependency in your `Cargo.toml`

0 commit comments

Comments
 (0)