Skip to content

Prepare v0.3.6 release #112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion async-stream-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
5 changes: 5 additions & 0 deletions async-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions async-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"

Expand Down