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 1
1
[package ]
2
2
name = " async-stream-impl"
3
- version = " 0.3.1 "
3
+ version = " 0.3.2 "
4
4
edition = " 2018"
5
5
license = " MIT"
6
6
authors = [" Carl Lerche <me@carllerche.com>" ]
7
7
description = " proc macros for async-stream crate"
8
- documentation = " https://docs.rs/async-stream-impl/0.3 "
8
+ documentation = " https://docs.rs/async-stream-impl"
9
9
homepage = " https://github.com/tokio-rs/async-stream"
10
10
repository = " https://github.com/tokio-rs/async-stream"
11
11
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 2
2
name = " async-stream"
3
3
# When releasing to crates.io:
4
4
# - Update version number
5
- # - lib.rs: html_root_url.
6
5
# - README.md
7
6
# - Update CHANGELOG.md
8
- # - Update doc URL.
9
- # - Cargo.toml
10
- # - README.md
11
7
# - Create git tag
12
- version = " 0.3.1 "
8
+ version = " 0.3.2 "
13
9
edition = " 2018"
14
10
license = " MIT"
15
11
authors = [" Carl Lerche <me@carllerche.com>" ]
16
12
description = " Asynchronous streams using async & await notation"
17
- documentation = " https://docs.rs/async-stream/0.3 "
13
+ documentation = " https://docs.rs/async-stream"
18
14
homepage = " https://github.com/tokio-rs/async-stream"
19
15
repository = " https://github.com/tokio-rs/async-stream"
20
16
readme = " README.md"
21
17
22
18
[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" }
24
20
futures-core = " 0.3"
25
21
26
22
[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" ) ]
2
1
#![ warn(
3
2
missing_debug_implementations,
4
3
missing_docs,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ error[E0727]: `async` generators are not yet supported
12
12
6 | yield 123;
13
13
| ^^^^^^^^^
14
14
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 == ()`
16
16
--> $DIR/yield_in_async.rs:4:5
17
17
|
18
18
4 | / stream! {
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ error[E0658]: yield syntax is experimental
6
6
|
7
7
= note: see issue #43122 <https://github.com/rust-lang/rust/issues/43122> for more information
8
8
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]`
10
10
--> $DIR/yield_in_closure.rs:6:14
11
11
|
12
12
6 | .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]`
14
14
|
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]`
16
16
17
17
Some errors have detailed explanations: E0277, E0658.
18
18
For more information about an error, try `rustc --explain E0277`.
You can’t perform that action at this time.
0 commit comments