Skip to content

Commit

Permalink
Prepare v0.3.3 release (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e authored Mar 13, 2022
1 parent e158fdc commit e1373e4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 2 additions & 3 deletions async-stream-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <me@carllerche.com>"]
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]
Expand Down
4 changes: 4 additions & 0 deletions async-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
10 changes: 3 additions & 7 deletions async-stream/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <me@carllerche.com>"]
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]
Expand Down

0 comments on commit e1373e4

Please sign in to comment.