Skip to content

Commit

Permalink
Release 1.3.30
Browse files Browse the repository at this point in the history
  • Loading branch information
sunli829 committed May 15, 2022
1 parent ebeb98a commit 63a4372
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 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.29"
version = "0.3.30"
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.29", features = ["session"] }
poem = { path = "../poem", version = "1.3.30", features = ["session"] }

chrono = "0.4.19"
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.29"
version = "1.3.30"
authors = ["sunli <[email protected]>"]
edition = "2021"
description = "Macros for poem"
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.29"
version = "1.3.30"
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.29", default-features = false }
poem = { path = "../poem", version = "1.3.30", default-features = false }

lambda_http = { version = "0.5.1" }

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 = "1.3.29"
version = "1.3.30"
authors = ["sunli <[email protected]>"]
edition = "2021"
description = "Macros for poem-openapi"
Expand Down
6 changes: 3 additions & 3 deletions poem-openapi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poem-openapi"
version = "1.3.29"
version = "1.3.30"
authors = ["sunli <[email protected]>"]
edition = "2021"
description = "OpenAPI support for Poem."
Expand All @@ -21,8 +21,8 @@ hostname = ["hostname-validator"]
static-files = ["poem/static-files"]

[dependencies]
poem-openapi-derive = { path = "../poem-openapi-derive", version = "1.3.29" }
poem = { path = "../poem", version = "1.3.29", features = [
poem-openapi-derive = { path = "../poem-openapi-derive", version = "1.3.30" }
poem = { path = "../poem", version = "1.3.30", features = [
"multipart",
"tempfile",
"cookie",
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.29"
version = "1.3.30"
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 @@ -61,7 +61,7 @@ acme = [
embed = ["rust-embed", "hex", "mime_guess"]

[dependencies]
poem-derive = { path = "../poem-derive", version = "1.3.29" }
poem-derive = { path = "../poem-derive", version = "1.3.30" }

async-trait = "0.1.51"
bytes = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion poem/src/route/router.rs
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ mod tests {
#[test]
#[should_panic]
fn duplicate_4() {
let _ = Route::new().at("/a/:a", h).at("/a/:b", h);
let _ = Route::new().at("/a/:a", h).at("/a/:a", h);
}

#[test]
Expand Down

0 comments on commit 63a4372

Please sign in to comment.