Skip to content

Commit

Permalink
Release 1.3.51
Browse files Browse the repository at this point in the history
  • Loading branch information
sunli829 committed Jan 11, 2023
1 parent e4b3cb6 commit 9bd08d1
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions poem-dbsession/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-dbsession"
version = "0.3.50"
version = "0.3.51"
authors = ["sunli <[email protected]>"]
edition = "2021"
description = "Session storage with database for Poem."
Expand Down Expand Up @@ -45,7 +45,7 @@ __sqlx-rustls = [
]

[dependencies]
poem = { path = "../poem", version = "1.3.50", features = ["session"] }
poem = { path = "../poem", version = "1.3.51", features = ["session"] }

chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
serde_json = "1.0.73"
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 = "1.3.50"
version = "1.3.51"
authors = ["sunli <[email protected]>"]
edition = "2021"
description = "Macros for poem"
Expand Down
2 changes: 1 addition & 1 deletion poem-grpc-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-grpc-build"
version = "0.2.14"
version = "0.2.15"
edition = "2021"
authors = ["sunli <[email protected]>"]
description = "Codegen module of poem-grpc."
Expand Down
4 changes: 2 additions & 2 deletions poem-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-grpc"
version = "0.2.14"
version = "0.2.15"
edition = "2021"
authors = ["sunli <[email protected]>"]
description = "GRPC support for Poem."
Expand All @@ -17,7 +17,7 @@ default = []
json-codec = ["serde", "serde_json"]

[dependencies]
poem = { path = "../poem", version = "1.3.50" }
poem = { path = "../poem", version = "1.3.51" }

futures-util = { version = "0.3.17" }
hyper = { version = "0.14.20", features = ["client"] }
Expand Down
4 changes: 2 additions & 2 deletions poem-lambda/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-lambda"
version = "1.3.50"
version = "1.3.51"
authors = ["sunli <[email protected]>"]
edition = "2021"
description = "Poem for AWS Lambda"
Expand All @@ -17,7 +17,7 @@ categories = [
]

[dependencies]
poem = { path = "../poem", version = "1.3.50", default-features = false }
poem = { path = "../poem", version = "1.3.51", default-features = false }

lambda_http = { version = "0.7.0" }

Expand Down
2 changes: 1 addition & 1 deletion poem-openapi-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-openapi-derive"
version = "2.0.21"
version = "2.0.22"
authors = ["sunli <[email protected]>"]
edition = "2021"
description = "Macros for poem-openapi"
Expand Down
8 changes: 4 additions & 4 deletions poem-openapi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-openapi"
version = "2.0.21"
version = "2.0.22"
authors = ["sunli <[email protected]>"]
edition = "2021"
description = "OpenAPI support for Poem."
Expand All @@ -23,8 +23,8 @@ static-files = ["poem/static-files"]
websocket = ["poem/websocket"]

[dependencies]
poem-openapi-derive = { path = "../poem-openapi-derive", version = "2.0.21" }
poem = { path = "../poem", version = "1.3.50", features = [
poem-openapi-derive = { path = "../poem-openapi-derive", version = "2.0.22" }
poem = { path = "../poem", version = "1.3.51", features = [
"multipart",
"tempfile",
"cookie",
Expand Down Expand Up @@ -67,7 +67,7 @@ humantime = { version = "2.1.0", optional = true }

[dev-dependencies]
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }
poem = { path = "../poem", version = "1.3.50", features = ["test"] }
poem = { path = "../poem", version = "1.3.51", features = ["test"] }

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions poem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem"
version = "1.3.50"
version = "1.3.51"
authors = ["sunli <[email protected]>"]
edition = "2021"
description = "Poem is a full-featured and easy-to-use web framework with the Rust programming language."
Expand Down Expand Up @@ -63,7 +63,7 @@ embed = ["rust-embed", "hex", "mime_guess"]
xml = ["quick-xml"]

[dependencies]
poem-derive = { path = "../poem-derive", version = "1.3.50" }
poem-derive = { path = "../poem-derive", version = "1.3.51" }

async-trait = "0.1.51"
bytes = "1.1.0"
Expand Down

0 comments on commit 9bd08d1

Please sign in to comment.