diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbb5f76..0a8307a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ env: RUST_BACKTRACE: 1 # This is the minimum supported Rust version of this crate. # When updating this, the reminder to update the minimum supported - # Rust version in README.md and .clippy.toml. + # Rust version in README.md, Cargo.toml, and .clippy.toml. minrust: 1.45.2 jobs: diff --git a/async-stream-impl/Cargo.toml b/async-stream-impl/Cargo.toml index 8047af3..218186c 100644 --- a/async-stream-impl/Cargo.toml +++ b/async-stream-impl/Cargo.toml @@ -1,12 +1,11 @@ [package] name = "async-stream-impl" -version = "0.3.2" +version = "0.3.3" edition = "2018" +rust-version = "1.45" license = "MIT" authors = ["Carl Lerche "] description = "proc macros for async-stream crate" -documentation = "https://docs.rs/async-stream-impl" -homepage = "https://github.com/tokio-rs/async-stream" repository = "https://github.com/tokio-rs/async-stream" [lib] diff --git a/async-stream/CHANGELOG.md b/async-stream/CHANGELOG.md index bd7f60f..8e5afdc 100644 --- a/async-stream/CHANGELOG.md +++ b/async-stream/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.3.3 + +* Fix a bug where `yield` and `?` cannot be used on the same line (#66) + # 0.3.2 * Expand `yield` in internal macro calls (#57) diff --git a/async-stream/Cargo.toml b/async-stream/Cargo.toml index e4a3409..2f31b77 100644 --- a/async-stream/Cargo.toml +++ b/async-stream/Cargo.toml @@ -1,22 +1,18 @@ [package] name = "async-stream" # When releasing to crates.io: -# - Update version number -# - README.md # - Update CHANGELOG.md # - Create git tag -version = "0.3.2" +version = "0.3.3" edition = "2018" +rust-version = "1.45" license = "MIT" authors = ["Carl Lerche "] description = "Asynchronous streams using async & await notation" -documentation = "https://docs.rs/async-stream" -homepage = "https://github.com/tokio-rs/async-stream" repository = "https://github.com/tokio-rs/async-stream" -readme = "README.md" [dependencies] -async-stream-impl = { version = "=0.3.2", path = "../async-stream-impl" } +async-stream-impl = { version = "=0.3.3", path = "../async-stream-impl" } futures-core = "0.3" [dev-dependencies]