diff --git a/Cargo.toml b/Cargo.toml index fae2fed07..e8d41fc2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost" -version = "0.10.0" +version = "0.10.1" authors = [ "Dan Burkert ", "Tokio Contributors ", diff --git a/prost-build/Cargo.toml b/prost-build/Cargo.toml index 5c28b36d4..751cac6f7 100644 --- a/prost-build/Cargo.toml +++ b/prost-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-build" -version = "0.10.0" +version = "0.10.1" authors = [ "Dan Burkert ", "Tokio Contributors ", diff --git a/prost-build/src/lib.rs b/prost-build/src/lib.rs index 66c44f6f8..d1f5f65ad 100644 --- a/prost-build/src/lib.rs +++ b/prost-build/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost-build/0.10.0")] +#![doc(html_root_url = "https://docs.rs/prost-build/0.10.1")] #![allow(clippy::option_as_ref_deref)] //! `prost-build` compiles `.proto` files into Rust. diff --git a/prost-derive/Cargo.toml b/prost-derive/Cargo.toml index f002312a5..5402c556b 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-derive" -version = "0.10.0" +version = "0.10.1" authors = [ "Dan Burkert ", "Tokio Contributors ", diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index 779b6970e..ad1aa19cf 100644 --- a/prost-derive/src/lib.rs +++ b/prost-derive/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost-derive/0.10.0")] +#![doc(html_root_url = "https://docs.rs/prost-derive/0.10.1")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index 31cd09dce..c718cd378 100644 --- a/prost-types/Cargo.toml +++ b/prost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-types" -version = "0.10.0" +version = "0.10.1" authors = [ "Dan Burkert ", "Tokio Contributors ", diff --git a/prost-types/src/lib.rs b/prost-types/src/lib.rs index 948c411d1..c89f02d5b 100644 --- a/prost-types/src/lib.rs +++ b/prost-types/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost-types/0.9.0")] +#![doc(html_root_url = "https://docs.rs/prost-types/0.10.1")] //! Protocol Buffers well-known types. //! diff --git a/src/lib.rs b/src/lib.rs index 11164d5f9..09deda858 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost/0.10.0")] +#![doc(html_root_url = "https://docs.rs/prost/0.10.1")] #![cfg_attr(not(feature = "std"), no_std)] // Re-export the alloc crate for use within derived code.