Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sunli829 committed Jul 27, 2024
1 parent e4ba74c commit 9d32cec
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ repository = "https://github.com/poem-web/poem"
rust-version = "1.75"

[workspace.dependencies]
poem = { path = "poem", version = "3.0.2", default-features = false }
poem-derive = { path = "poem-derive", version = "3.0.2" }
poem = { path = "poem", version = "3.0.4", default-features = false }
poem-derive = { path = "poem-derive", version = "3.0.4" }
poem-openapi-derive = { path = "poem-openapi-derive", version = "5.0.3" }
poem-grpc-build = { path = "poem-grpc-build", version = "0.4.0" }
poem-grpc-build = { path = "poem-grpc-build", version = "0.4.2" }

proc-macro-crate = "3.0.0"
proc-macro2 = "1.0.29"
Expand Down
2 changes: 1 addition & 1 deletion poem-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-derive"
version = "3.0.2"
version = "3.0.4"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
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.2"
version = "0.4.3"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion poem-lambda/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-lambda"
version = "5.0.0"
version = "5.0.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
4 changes: 4 additions & 0 deletions poem-openapi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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.3] 2024-07-27

- Added derivations for Type, ParseFromJSON and ToJSON for sqlx types [#833](https://github.com/poem-web/poem/pull/833)

# [5.0.1] 2024-05-18

- Add enum_items to discriminated union [#741](https://github.com/poem-web/poem/pull/741)
Expand Down
8 changes: 8 additions & 0 deletions poem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.4] 2024-07-27

- Add manual Default implementation for `#[handler]` [#848](https://github.com/poem-web/poem/pull/848)
- feat: add `AsyncSeek trait` to `Upload::into_async_read` return type [#853](https://github.com/poem-web/poem/pull/853)
- Fix `EmbeddedFilesEndpoint` not working for `index.html` in subdirectories [#825](https://github.com/poem-web/poem/pull/825)
- chore: Bump `redis` to `0.26` [#856](https://github.com/poem-web/poem/pull/856)
- chore: bump `tokio-tungstenite`, `quick-xml`, `tokio`, `openssl` [#857](https://github.com/poem-web/poem/pull/857)

# [3.0.3] 2024-07-20

- bump `opentelemetry` from `0.23` to `0.24`
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.3"
version = "3.0.4"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 9d32cec

Please sign in to comment.