From 9d32cecbad6f6e25a659ffe46a432a174340fbfc Mon Sep 17 00:00:00 2001 From: Sunli Date: Sat, 27 Jul 2024 17:26:45 +0800 Subject: [PATCH] update versions --- Cargo.toml | 6 +++--- poem-derive/Cargo.toml | 2 +- poem-grpc/Cargo.toml | 2 +- poem-lambda/Cargo.toml | 2 +- poem-openapi/CHANGELOG.md | 4 ++++ poem/CHANGELOG.md | 8 ++++++++ poem/Cargo.toml | 2 +- 7 files changed, 19 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 17c3956fd7..ebdc7fbadf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/poem-derive/Cargo.toml b/poem-derive/Cargo.toml index c9a2408eaa..3e713e854b 100644 --- a/poem-derive/Cargo.toml +++ b/poem-derive/Cargo.toml @@ -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 diff --git a/poem-grpc/Cargo.toml b/poem-grpc/Cargo.toml index 8b4675c996..0efd641ae7 100644 --- a/poem-grpc/Cargo.toml +++ b/poem-grpc/Cargo.toml @@ -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 diff --git a/poem-lambda/Cargo.toml b/poem-lambda/Cargo.toml index 2ea3f62aeb..d9c227e1e1 100644 --- a/poem-lambda/Cargo.toml +++ b/poem-lambda/Cargo.toml @@ -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 diff --git a/poem-openapi/CHANGELOG.md b/poem-openapi/CHANGELOG.md index 94fd01bdfd..9244d0a61b 100644 --- a/poem-openapi/CHANGELOG.md +++ b/poem-openapi/CHANGELOG.md @@ -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) diff --git a/poem/CHANGELOG.md b/poem/CHANGELOG.md index 9563ac645a..23b3c48619 100644 --- a/poem/CHANGELOG.md +++ b/poem/CHANGELOG.md @@ -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` diff --git a/poem/Cargo.toml b/poem/Cargo.toml index 3425f244e6..7c07cc4fd4 100644 --- a/poem/Cargo.toml +++ b/poem/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poem" -version = "3.0.3" +version = "3.0.4" authors.workspace = true edition.workspace = true license.workspace = true