diff --git a/async-stream-impl/Cargo.toml b/async-stream-impl/Cargo.toml index 9e945f1..5c6be2f 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.4" +version = "0.3.5" edition = "2018" rust-version = "1.56" license = "MIT" diff --git a/async-stream/CHANGELOG.md b/async-stream/CHANGELOG.md index d75deb9..2eb7df1 100644 --- a/async-stream/CHANGELOG.md +++ b/async-stream/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.5 + +* Update to syn 2.0 (#93) +* Bump MSRV to 1.56 (#97) + # 0.3.4 * Improve support for `#[track_caller]` (#72) diff --git a/async-stream/Cargo.toml b/async-stream/Cargo.toml index 7355bf4..115dc7d 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.4" +version = "0.3.5" edition = "2018" rust-version = "1.56" 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.4", path = "../async-stream-impl" } +async-stream-impl = { version = "=0.3.5", path = "../async-stream-impl" } futures-core = "0.3" pin-project-lite = "0.2"