File tree Expand file tree Collapse file tree 6 files changed +23
-14
lines changed Expand file tree Collapse file tree 6 files changed +23
-14
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " async-stream-impl"
3- version = " 0.3.1 "
3+ version = " 0.3.2 "
44edition = " 2018"
55license = " MIT"
66authors = [" Carl Lerche <me@carllerche.com>" ]
77description = " proc macros for async-stream crate"
8- documentation = " https://docs.rs/async-stream-impl/0.3 "
8+ documentation = " https://docs.rs/async-stream-impl"
99homepage = " https://github.com/tokio-rs/async-stream"
1010repository = " https://github.com/tokio-rs/async-stream"
1111
Original file line number Diff line number Diff line change 1+ # 0.3.2
2+
3+ * Expand ` yield ` in internal macro calls (#57 )
4+
5+ # 0.3.1
6+
7+ * Support reexporting (#46 )
8+ * Allow yielding ` !Unpin ` values (#50 )
9+ * Implement ` Stream::size_hint ` method on ` AsyncStream ` (#40 )
10+ * Documentation improvements
11+
12+ # 0.3.0
13+
14+ * Remove proc-macro-hack (#30 )
Original file line number Diff line number Diff line change 22name = " async-stream"
33# When releasing to crates.io:
44# - Update version number
5- # - lib.rs: html_root_url.
65# - README.md
76# - Update CHANGELOG.md
8- # - Update doc URL.
9- # - Cargo.toml
10- # - README.md
117# - Create git tag
12- version = " 0.3.1 "
8+ version = " 0.3.2 "
139edition = " 2018"
1410license = " MIT"
1511authors = [" Carl Lerche <me@carllerche.com>" ]
1612description = " Asynchronous streams using async & await notation"
17- documentation = " https://docs.rs/async-stream/0.3 "
13+ documentation = " https://docs.rs/async-stream"
1814homepage = " https://github.com/tokio-rs/async-stream"
1915repository = " https://github.com/tokio-rs/async-stream"
2016readme = " README.md"
2117
2218[dependencies ]
23- async-stream-impl = { version = " =0.3.1 " , path = " ../async-stream-impl" }
19+ async-stream-impl = { version = " =0.3.2 " , path = " ../async-stream-impl" }
2420futures-core = " 0.3"
2521
2622[dev-dependencies ]
Original file line number Diff line number Diff line change 1- #![ doc( html_root_url = "https://docs.rs/async-stream/0.3.1" ) ]
21#![ warn(
32 missing_debug_implementations,
43 missing_docs,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ error[E0727]: `async` generators are not yet supported
12126 | yield 123;
1313 | ^^^^^^^^^
1414
15- error[E0271]: type mismatch resolving `<[static generator@$DIR/src/lib.rs:202 :9: 202 :67] as Generator<ResumeTy>>::Yield == ()`
15+ error[E0271]: type mismatch resolving `<[static generator@$DIR/src/lib.rs:201 :9: 201 :67] as Generator<ResumeTy>>::Yield == ()`
1616 --> $DIR/yield_in_async.rs:4:5
1717 |
18184 | / stream! {
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ error[E0658]: yield syntax is experimental
66 |
77 = note: see issue #43122 <https://github.com/rust-lang/rust/issues/43122> for more information
88
9- error[E0277]: expected a `FnOnce<(&str,)>` closure, found `[generator@$DIR/src/lib.rs:202 :9: 202 :67]`
9+ error[E0277]: expected a `FnOnce<(&str,)>` closure, found `[generator@$DIR/src/lib.rs:201 :9: 201 :67]`
1010 --> $DIR/yield_in_closure.rs:6:14
1111 |
12126 | .and_then(|v| {
13- | ^^^^^^^^ expected an `FnOnce<(&str,)>` closure, found `[generator@$DIR/src/lib.rs:202 :9: 202 :67]`
13+ | ^^^^^^^^ expected an `FnOnce<(&str,)>` closure, found `[generator@$DIR/src/lib.rs:201 :9: 201 :67]`
1414 |
15- = help: the trait `FnOnce<(&str,)>` is not implemented for `[generator@$DIR/src/lib.rs:202 :9: 202 :67]`
15+ = help: the trait `FnOnce<(&str,)>` is not implemented for `[generator@$DIR/src/lib.rs:201 :9: 201 :67]`
1616
1717Some errors have detailed explanations: E0277, E0658.
1818For more information about an error, try `rustc --explain E0277`.
You can’t perform that action at this time.
0 commit comments