Release 1.2.51

poem@1.2.51
poem-dbsession@0.2.51
poem-derive@1.2.51
poem-lambda@1.2.51
poem-openapi@1.2.51
poem-openapi-derive@1.2.51

Generated by cargo-workspaces
This commit is contained in:
Sunli
2022-01-31 09:16:30 +08:00
parent 53b7ed13d3
commit 30acc072b9
7 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "poem-dbsession"
version = "0.2.50"
version = "0.2.51"
authors = ["sunli <scott_s829@163.com>"]
edition = "2021"
description = "Session storage with database for Poem."
@@ -63,7 +63,7 @@ __sqlx-rustls = [
]
[dependencies]
poem = { path = "../poem", version = "1.2.50", features = ["session"] }
poem = { path = "../poem", version = "1.2.51", features = ["session"] }
chrono = "0.4.19"
serde_json = "1.0.73"

View File

@@ -1,6 +1,6 @@
[package]
name = "poem-derive"
version = "1.2.50"
version = "1.2.51"
authors = ["sunli <scott_s829@163.com>"]
edition = "2021"
description = "Macros for poem"

View File

@@ -1,6 +1,6 @@
[package]
name = "poem-lambda"
version = "1.2.50"
version = "1.2.51"
authors = ["sunli <scott_s829@163.com>"]
edition = "2021"
description = "Poem for AWS Lambda"
@@ -17,7 +17,7 @@ categories = [
]
[dependencies]
poem = { path = "../poem", version = "1.2.50" }
poem = { path = "../poem", version = "1.2.51" }
lambda_http = { version = "0.4.1" }

View File

@@ -1,6 +1,6 @@
[package]
name = "poem-openapi-derive"
version = "1.2.50"
version = "1.2.51"
authors = ["sunli <scott_s829@163.com>"]
edition = "2021"
description = "Macros for poem-openapi"

View File

@@ -1,6 +1,6 @@
[package]
name = "poem-openapi"
version = "1.2.50"
version = "1.2.51"
authors = ["sunli <scott_s829@163.com>"]
edition = "2021"
description = "OpenAPI support for Poem."
@@ -24,8 +24,8 @@ hostname = ["hostname-validator"]
static-files = ["poem/static-files"]
[dependencies]
poem-openapi-derive = { path = "../poem-openapi-derive", version = "1.2.50" }
poem = { path = "../poem", version = "1.2.50", features = ["multipart", "tempfile", "cookie", "sse"] }
poem-openapi-derive = { path = "../poem-openapi-derive", version = "1.2.51" }
poem = { path = "../poem", version = "1.2.51", features = ["multipart", "tempfile", "cookie", "sse"] }
tokio = { version = "1.14.0", features = ["fs"] }
serde_json = "1.0.68"

View File

@@ -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).
# [1.2.50] 2022-1-31
# [1.2.51] 2022-1-31
- Replace `SystemTime` with `Instant` in tracing middleware. [#187](https://github.com/poem-web/poem/pull/187)

View File

@@ -1,6 +1,6 @@
[package]
name = "poem"
version = "1.2.50"
version = "1.2.51"
authors = ["sunli <scott_s829@163.com>"]
edition = "2021"
description = "Poem is a full-featured and easy-to-use web framework with the Rust programming language."
@@ -38,7 +38,7 @@ test = ["sse", "sse-codec", "tokio-util/compat", "mime"]
i18n = ["fluent", "fluent-langneg", "fluent-syntax", "unic-langid", "intl-memoizer"]
[dependencies]
poem-derive = { path = "../poem-derive", version = "1.2.50" }
poem-derive = { path = "../poem-derive", version = "1.2.51" }
async-trait = "0.1.51"
bytes = "1.1.0"