diff --git a/Cargo.toml b/Cargo.toml index 8dca455ae..b26d5c836 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost" -version = "0.11.3" +version = "0.11.5" authors = [ "Dan Burkert ", "Lucio Franco ", "Lucio Franco ", @@ -27,8 +27,8 @@ itertools = { version = "0.10", default-features = false, features = ["use_alloc log = "0.4" multimap = { version = "0.8", default-features = false } petgraph = { version = "0.6", default-features = false } -prost = { version = "0.11.0", path = "..", default-features = false } -prost-types = { version = "0.11.0", path = "../prost-types", default-features = false } +prost = { version = "0.11.5", path = "..", default-features = false } +prost-types = { version = "0.11.5", path = "../prost-types", default-features = false } tempfile = "3" lazy_static = "1.4.0" regex = { version = "1.5.5", default-features = false, features = ["std", "unicode-bool"] } diff --git a/prost-build/src/lib.rs b/prost-build/src/lib.rs index 34e509f63..189a5dc93 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.11.4")] +#![doc(html_root_url = "https://docs.rs/prost-build/0.11.5")] #![allow(clippy::option_as_ref_deref, clippy::format_push_string)] //! `prost-build` compiles `.proto` files into Rust. diff --git a/prost-derive/Cargo.toml b/prost-derive/Cargo.toml index 65c49589d..b2a34b355 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-derive" -version = "0.11.2" +version = "0.11.5" authors = [ "Dan Burkert ", "Lucio Franco ", diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index b90c9df5a..1713c34d6 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.2")] +#![doc(html_root_url = "https://docs.rs/prost-derive/0.11.5")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index 8893b00eb..fb65ceaf7 100644 --- a/prost-types/Cargo.toml +++ b/prost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-types" -version = "0.11.2" +version = "0.11.5" authors = [ "Dan Burkert ", "Lucio Franco