Skip to content

Commit 8c22349

Browse files
authored
Prepare v0.3.1 release (#52)
1 parent 8af39a1 commit 8c22349

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

async-stream-impl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "async-stream-impl"
3-
version = "0.3.0"
3+
version = "0.3.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.3.0/async_stream_impl"
8+
documentation = "https://docs.rs/async-stream-impl/0.3"
99
homepage = "https://github.com/tokio-rs/async-stream"
1010
repository = "https://github.com/tokio-rs/async-stream"
1111

@@ -18,7 +18,7 @@ syn = { version = "1", features = ["extra-traits", "full", "visit-mut"]}
1818
quote = "1"
1919

2020
[dev-dependencies]
21-
async-stream = { version = "0.3.0", path = "../async-stream" }
21+
async-stream = { path = "../async-stream" }
2222
futures-core = "0.3"
2323
futures-util = "0.3"
2424
tokio = { version = "1", features = ["full"] }

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.3.0"
12+
version = "0.3.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.3.0/async_stream"
17+
documentation = "https://docs.rs/async-stream/0.3"
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.3.0", path = "../async-stream-impl" }
23+
async-stream-impl = { version = "=0.3.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.3.0")]
1+
#![doc(html_root_url = "https://docs.rs/async-stream/0.3.1")]
22
#![warn(
33
missing_debug_implementations,
44
missing_docs,

0 commit comments

Comments
 (0)