Skip to content

Commit

Permalink
Prepare v0.3.1 release (tokio-rs#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e authored and SergioBenitez committed May 21, 2021
1 parent c46ada9 commit 658ea82
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions async-stream-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "async-stream-impl"
version = "0.3.0"
version = "0.3.1"
edition = "2018"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "proc macros for async-stream crate"
documentation = "https://docs.rs/async-stream-impl/0.3.0/async_stream_impl"
documentation = "https://docs.rs/async-stream-impl/0.3"
homepage = "https://github.com/tokio-rs/async-stream"
repository = "https://github.com/tokio-rs/async-stream"

Expand All @@ -18,7 +18,7 @@ syn = { version = "1", features = ["extra-traits", "full", "visit-mut"]}
quote = "1"

[dev-dependencies]
async-stream = { version = "0.3.0", path = "../async-stream" }
async-stream = { path = "../async-stream" }
futures-core = "0.3"
futures-util = "0.3"
tokio = { version = "1", features = ["full"] }
6 changes: 3 additions & 3 deletions async-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ name = "async-stream"
# - Cargo.toml
# - README.md
# - Create git tag
version = "0.3.0"
version = "0.3.1"
edition = "2018"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "Asynchronous streams using async & await notation"
documentation = "https://docs.rs/async-stream/0.3.0/async_stream"
documentation = "https://docs.rs/async-stream/0.3"
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.0", path = "../async-stream-impl" }
async-stream-impl = { version = "=0.3.1", path = "../async-stream-impl" }
futures-core = "0.3"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion async-stream/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/async-stream/0.3.0")]
#![doc(html_root_url = "https://docs.rs/async-stream/0.3.1")]
#![warn(
missing_debug_implementations,
missing_docs,
Expand Down

0 comments on commit 658ea82

Please sign in to comment.