Skip to content

Commit

Permalink
poem 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sunli829 committed May 18, 2024
1 parent 5b92e9f commit 7cfa566
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repository = "https://github.com/poem-web/poem"
rust-version = "1.75"

[workspace.dependencies]
poem = { path = "poem", version = "3.0.0", default-features = false }
poem = { path = "poem", version = "3.0.1", default-features = false }
poem-derive = { path = "poem-derive", version = "3.0.0" }
poem-openapi-derive = { path = "poem-openapi-derive", version = "5.0.0" }
poem-grpc-build = { path = "poem-grpc-build", version = "0.4.0" }
Expand Down
10 changes: 10 additions & 0 deletions poem-grpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [0.4.1] 2024-05-18

- message can span multiple frame [#817](https://github.com/poem-web/poem/pull/817)
-
2 changes: 1 addition & 1 deletion poem-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-grpc"
version = "0.4.0"
version = "0.4.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
3 changes: 2 additions & 1 deletion poem-openapi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [5.0.1] 2024-05-11
# [5.0.1] 2024-05-18

- Add enum_items to discriminated union [#741](https://github.com/poem-web/poem/pull/741)
- fix Union doesn't implement IsObjectType [#800](https://github.com/poem-web/poem/issues/800)
- fix Union doesn't support generics in the last version [#799](https://github.com/poem-web/poem/issues/799)
- Expose Poem-OpenApi Upload File struct [#816](https://github.com/poem-web/poem/pull/816)

# [5.0.0] 2024-03-30

Expand Down
2 changes: 1 addition & 1 deletion poem-openapi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-openapi"
version = "5.0.0"
version = "5.0.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions poem-openapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ async fn main() -> Result<(), std::io::Error> {
This feature needs to be opted-in. It can be done by adding the feature in `Cargo.toml` file
```toml filename=Cargo.toml
[dependencies]
poem = "1"
poem-openapi = { version = "2", features = ["swagger-ui"]}
poem = "3"
poem-openapi = { version = "5", features = ["swagger-ui"]}
tokio = { version = "1", features = ["full"] }
```

Expand Down
4 changes: 2 additions & 2 deletions poem-openapi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
//! edition = "2021"
//!
//! [dependencies]
//! poem = "1.2"
//! poem-openapi = { version = "1.2", features = ["swagger-ui"] }
//! poem = "3"
//! poem-openapi = { version = "5", features = ["swagger-ui"] }
//! tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
//! ```
//!
Expand Down
2 changes: 1 addition & 1 deletion poem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [3.0.1] 2024-05-11
# [3.0.1] 2024-05-18

- Fix error response builder, missing Content-Type header [#808](https://github.com/poem-web/poem/pull/808)
- Fast fix for acme [#804](https://github.com/poem-web/poem/pull/804)
Expand Down
2 changes: 1 addition & 1 deletion poem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem"
version = "3.0.0"
version = "3.0.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 7cfa566

Please sign in to comment.