File tree 16 files changed +44
-20
lines changed
16 files changed +44
-20
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog - utoipa-rapidoc
2
2
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
+
3
9
## 5.0.1 - Jan 6 2025
4
10
5
11
### Changed
Original file line number Diff line number Diff line change 2
2
name = " utoipa-rapidoc"
3
3
description = " RapiDoc for utoipa"
4
4
edition = " 2021"
5
- version = " 5 .0.1 "
5
+ version = " 6 .0.0 "
6
6
license = " MIT OR Apache-2.0"
7
7
readme = " README.md"
8
8
keywords = [" rapidoc" , " openapi" , " documentation" ]
Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ You may find fullsize examples from utoipa's Github [repository][examples].
24
24
Use RapiDoc only without any boiler plate implementation.
25
25
``` toml
26
26
[dependencies ]
27
- utoipa-rapidoc = " 5 "
27
+ utoipa-rapidoc = " 6 "
28
28
```
29
29
30
30
Enable actix-web integration with RapiDoc.
31
31
``` toml
32
32
[dependencies ]
33
- utoipa-rapidoc = { version = " 5 " , features = [" actix-web" ] }
33
+ utoipa-rapidoc = { version = " 6 " , features = [" actix-web" ] }
34
34
```
35
35
36
36
# Using standalone
Original file line number Diff line number Diff line change 20
20
//! Use RapiDoc only without any boiler plate implementation.
21
21
//! ```toml
22
22
//! [dependencies]
23
- //! utoipa-rapidoc = "4 "
23
+ //! utoipa-rapidoc = "6 "
24
24
//! ```
25
25
//!
26
26
//! Enable actix-web integration with RapiDoc.
27
27
//! ```toml
28
28
//! [dependencies]
29
- //! utoipa-rapidoc = { version = "4 ", features = ["actix-web"] }
29
+ //! utoipa-rapidoc = { version = "6 ", features = ["actix-web"] }
30
30
//! ```
31
31
//!
32
32
//! # Using standalone
Original file line number Diff line number Diff line change 1
1
# Changelog - utoipa-redoc
2
2
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
+
3
9
## 5.0.1 - Jan 6 2025
4
10
5
11
### Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " utoipa-redoc"
3
3
description = " Redoc for utoipa"
4
- version = " 5 .0.1 "
4
+ version = " 6 .0.0 "
5
5
edition = " 2021"
6
6
license = " MIT OR Apache-2.0"
7
7
readme = " README.md"
Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ You may find fullsize examples from utoipa's Github [repository][examples].
24
24
Use Redoc only without any boiler plate implementation.
25
25
``` toml
26
26
[dependencies ]
27
- utoipa-redoc = " 5 "
27
+ utoipa-redoc = " 6 "
28
28
```
29
29
30
30
Enable actix-web integration with Redoc.
31
31
``` toml
32
32
[dependencies ]
33
- utoipa-redoc = { version = " 5 " , features = [" actix-web" ] }
33
+ utoipa-redoc = { version = " 6 " , features = [" actix-web" ] }
34
34
```
35
35
36
36
# Using standalone
Original file line number Diff line number Diff line change 20
20
//! Use Redoc only without any boiler plate implementation.
21
21
//! ```toml
22
22
//! [dependencies]
23
- //! utoipa-redoc = "4 "
23
+ //! utoipa-redoc = "6 "
24
24
//! ```
25
25
//!
26
26
//! Enable actix-web integration with Redoc.
27
27
//! ```toml
28
28
//! [dependencies]
29
- //! utoipa-redoc = { version = "4 ", features = ["actix-web"] }
29
+ //! utoipa-redoc = { version = "6 ", features = ["actix-web"] }
30
30
//! ```
31
31
//!
32
32
//! # Using standalone
Original file line number Diff line number Diff line change 1
1
# Changelog - utoipa-scalar
2
2
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
+
3
9
## 0.2.1 - Jan 6 2025
4
10
5
11
### Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " utoipa-scalar"
3
3
description = " Scalar for utoipa"
4
- version = " 0.2.1 "
4
+ version = " 0.3.0 "
5
5
edition = " 2021"
6
6
license = " MIT OR Apache-2.0"
7
7
readme = " README.md"
Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ You may find fullsize examples from utoipa's Github [repository][examples].
24
24
Use Scalar only without any boiler plate implementation.
25
25
``` toml
26
26
[dependencies ]
27
- utoipa-scalar = " 0.2 "
27
+ utoipa-scalar = " 0.3 "
28
28
```
29
29
30
30
Enable actix-web integration with Scalar.
31
31
``` toml
32
32
[dependencies ]
33
- utoipa-scalar = { version = " 0.2 " , features = [" actix-web" ] }
33
+ utoipa-scalar = { version = " 0.3 " , features = [" actix-web" ] }
34
34
```
35
35
36
36
# Using standalone
Original file line number Diff line number Diff line change 20
20
//! Use Scalar only without any boiler plate implementation.
21
21
//! ```toml
22
22
//! [dependencies]
23
- //! utoipa-scalar = "0.1 "
23
+ //! utoipa-scalar = "0.3 "
24
24
//! ```
25
25
//!
26
26
//! Enable actix-web integration with Scalar.
27
27
//! ```toml
28
28
//! [dependencies]
29
- //! utoipa-scalar = { version = "0.1 ", features = ["actix-web"] }
29
+ //! utoipa-scalar = { version = "0.3 ", features = ["actix-web"] }
30
30
//! ```
31
31
//!
32
32
//! # Using standalone
Original file line number Diff line number Diff line change 1
1
# Changelog - utoipa-swagger-ui
2
2
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
+
3
9
## 8.1.1 - Jan 6 2025
4
10
5
11
### Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " utoipa-swagger-ui"
3
3
description = " Swagger UI for utoipa"
4
- version = " 8.1.1 "
4
+ version = " 9.0.0 "
5
5
edition = " 2021"
6
6
license = " MIT OR Apache-2.0"
7
7
readme = " README.md"
Original file line number Diff line number Diff line change @@ -43,14 +43,14 @@ Use only the raw types without any boilerplate implementation.
43
43
44
44
``` toml
45
45
[dependencies ]
46
- utoipa-swagger-ui = " 8 "
46
+ utoipa-swagger-ui = " 9 "
47
47
```
48
48
49
49
Enable actix-web framework with Swagger UI you could define the dependency as follows.
50
50
51
51
``` toml
52
52
[dependencies ]
53
- utoipa-swagger-ui = { version = " 8 " , features = [" actix-web" ] }
53
+ utoipa-swagger-ui = { version = " 9 " , features = [" actix-web" ] }
54
54
```
55
55
56
56
** Note!** Also remember that you already have defined ` utoipa ` dependency in your ` Cargo.toml `
Original file line number Diff line number Diff line change 37
37
//! Use only the raw types without any boiler plate implementation.
38
38
//! ```toml
39
39
//! [dependencies]
40
- //! utoipa-swagger-ui = "8 "
40
+ //! utoipa-swagger-ui = "9 "
41
41
//! ```
42
42
//!
43
43
//! Enable actix-web framework with Swagger UI you could define the dependency as follows.
44
44
//! ```toml
45
45
//! [dependencies]
46
- //! utoipa-swagger-ui = { version = "8 ", features = ["actix-web"] }
46
+ //! utoipa-swagger-ui = { version = "9 ", features = ["actix-web"] }
47
47
//! ```
48
48
//!
49
49
//! **Note!** Also remember that you already have defined `utoipa` dependency in your `Cargo.toml`
You can’t perform that action at this time.
0 commit comments