diff --git a/async-stream-impl/Cargo.toml b/async-stream-impl/Cargo.toml index fbc7582..6682921 100644 --- a/async-stream-impl/Cargo.toml +++ b/async-stream-impl/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "async-stream-impl" -version = "0.3.0" +version = "0.3.1" edition = "2018" license = "MIT" authors = ["Carl Lerche "] description = "proc macros for async-stream crate" -documentation = "https://docs.rs/async-stream-impl/0.3.0/async_stream_impl" +documentation = "https://docs.rs/async-stream-impl/0.3" homepage = "https://github.com/tokio-rs/async-stream" repository = "https://github.com/tokio-rs/async-stream" @@ -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" } +async-stream = { path = "../async-stream" } futures-core = "0.3" futures-util = "0.3" tokio = { version = "1", features = ["full"] } diff --git a/async-stream/Cargo.toml b/async-stream/Cargo.toml index 5f3f484..c30cb3d 100644 --- a/async-stream/Cargo.toml +++ b/async-stream/Cargo.toml @@ -9,18 +9,18 @@ name = "async-stream" # - Cargo.toml # - README.md # - Create git tag -version = "0.3.0" +version = "0.3.1" edition = "2018" license = "MIT" authors = ["Carl Lerche "] description = "Asynchronous streams using async & await notation" -documentation = "https://docs.rs/async-stream/0.3.0/async_stream" +documentation = "https://docs.rs/async-stream/0.3" 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" } futures-core = "0.3" [dev-dependencies] diff --git a/async-stream/src/lib.rs b/async-stream/src/lib.rs index b236351..432c049 100644 --- a/async-stream/src/lib.rs +++ b/async-stream/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/async-stream/0.3.0")] +#![doc(html_root_url = "https://docs.rs/async-stream/0.3.1")] #![warn( missing_debug_implementations, missing_docs,