From a16b91cc9641bc6d56a3b8b7e160378e19a0033a Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Wed, 2 Oct 2024 04:27:54 +0900 Subject: [PATCH] Prepare v0.3.6 release --- async-stream-impl/Cargo.toml | 2 +- async-stream/CHANGELOG.md | 5 +++++ async-stream/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/async-stream-impl/Cargo.toml b/async-stream-impl/Cargo.toml index 63ed462..1a8ed6a 100644 --- a/async-stream-impl/Cargo.toml +++ b/async-stream-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-stream-impl" -version = "0.3.5" +version = "0.3.6" edition = "2021" rust-version = "1.65" license = "MIT" diff --git a/async-stream/CHANGELOG.md b/async-stream/CHANGELOG.md index 2eb7df1..f78b947 100644 --- a/async-stream/CHANGELOG.md +++ b/async-stream/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.6 + +* Fix soundness bugs (#109) +* Bump MSRV to 1.65 (#109) + # 0.3.5 * Update to syn 2.0 (#93) diff --git a/async-stream/Cargo.toml b/async-stream/Cargo.toml index ce06c22..3568c3f 100644 --- a/async-stream/Cargo.toml +++ b/async-stream/Cargo.toml @@ -3,7 +3,7 @@ name = "async-stream" # When releasing to crates.io: # - Update CHANGELOG.md # - Create git tag -version = "0.3.5" +version = "0.3.6" edition = "2021" rust-version = "1.65" license = "MIT" @@ -12,7 +12,7 @@ description = "Asynchronous streams using async & await notation" repository = "https://github.com/tokio-rs/async-stream" [dependencies] -async-stream-impl = { version = "=0.3.5", path = "../async-stream-impl" } +async-stream-impl = { version = "=0.3.6", path = "../async-stream-impl" } futures-core = "0.3" pin-project-lite = "0.2"