Skip to content
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

Prepare v0.3.1 release #52

Merged
merged 1 commit into from
Apr 18, 2021
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
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" }
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can avoid the circular dev-dependencies problems by removing the version from path dev-dependencies. See rust-lang/futures-rs#2305 for more.

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" }
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

async-stream-impl is the implementation detail of async-stream, using = requirements would help to avoid some problems like rust-lang/futures-rs#2061

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