diff --git a/Cargo.toml b/Cargo.toml index b26d5c836..78b44ce85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost" -version = "0.11.5" +version = "0.11.6" 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.5", path = "..", default-features = false } -prost-types = { version = "0.11.5", path = "../prost-types", default-features = false } +prost = { version = "0.11.6", path = "..", default-features = false } +prost-types = { version = "0.11.6", 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 5502d4461..c506f4a7b 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.5")] +#![doc(html_root_url = "https://docs.rs/prost-build/0.11.6")] #![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 b2a34b355..aae88f797 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-derive" -version = "0.11.5" +version = "0.11.6" authors = [ "Dan Burkert ", "Lucio Franco ", diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index 1713c34d6..a9825c9f6 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.11.5")] +#![doc(html_root_url = "https://docs.rs/prost-derive/0.11.6")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index fb65ceaf7..6709d329c 100644 --- a/prost-types/Cargo.toml +++ b/prost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-types" -version = "0.11.5" +version = "0.11.6" authors = [ "Dan Burkert ", "Lucio Franco