Skip to content

Commit 91f6a38

Browse files
authored
Prepare v0.2.1 release (#24)
1 parent 6556bfc commit 91f6a38

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

async-stream-impl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "async-stream-impl"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2018"
55
license = "MIT"
66
authors = ["Carl Lerche <me@carllerche.com>"]
77
description = "proc macros for async-stream crate"
8-
documentation = "https://docs.rs/async-stream-impl/0.1.0/async-stream-impl"
8+
documentation = "https://docs.rs/async-stream-impl/0.2.1/async-stream-impl"
99
homepage = "https://github.com/tokio-rs/async-stream"
1010
repository = "https://github.com/tokio-rs/async-stream"
1111

async-stream/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ name = "async-stream"
99
# - Cargo.toml
1010
# - README.md
1111
# - Create git tag
12-
version = "0.2.0"
12+
version = "0.2.1"
1313
edition = "2018"
1414
license = "MIT"
1515
authors = ["Carl Lerche <me@carllerche.com>"]
1616
description = "Asynchronous streams using async & await notation"
17-
documentation = "https://docs.rs/async-stream/0.2.0/async-stream"
17+
documentation = "https://docs.rs/async-stream/0.2.1/async-stream"
1818
homepage = "https://github.com/tokio-rs/async-stream"
1919
repository = "https://github.com/tokio-rs/async-stream"
2020
readme = "README.md"
2121

2222
[dependencies]
23-
async-stream-impl = { version = "0.2.0", path = "../async-stream-impl" }
23+
async-stream-impl = { version = "0.2.1", path = "../async-stream-impl" }
2424
futures-core = "0.3"
2525

2626
[dev-dependencies]

async-stream/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/async-stream/0.2.0")]
1+
#![doc(html_root_url = "https://docs.rs/async-stream/0.2.1")]
22
#![warn(
33
missing_debug_implementations,
44
missing_docs,

0 commit comments

Comments
 (0)