-
Notifications
You must be signed in to change notification settings - Fork 33
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
Conversation
@@ -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" } |
There was a problem hiding this comment.
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.
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" } |
There was a problem hiding this comment.
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
There have been some improvements since the previous release.
Changes:
!Unpin
values (Allow yielding !Unpin values. #50)Support?
operator inside macros intry_stream!
(Let the ? operator work natively in try_stream!. #53)Stream::size_hint
method onAsyncStream
(Implement Stream::size_hint method on AsyncStream #40)