diff --git a/Cargo.toml b/Cargo.toml index 03861db15..8fc4b5481 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost" -version = "0.11.8" +version = "0.11.9" 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.8", path = "..", default-features = false } -prost-types = { version = "0.11.8", path = "../prost-types", default-features = false } +prost = { version = "0.11.9", path = "..", default-features = false } +prost-types = { version = "0.11.9", 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 4ac36b871..06a7e1745 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.8")] +#![doc(html_root_url = "https://docs.rs/prost-build/0.11.9")] #![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 014b2f29f..56b480f7d 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-derive" -version = "0.11.8" +version = "0.11.9" authors = [ "Dan Burkert ", "Lucio Franco ", diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index 65b80e7ac..5a27637aa 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.8")] +#![doc(html_root_url = "https://docs.rs/prost-derive/0.11.9")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index 273ec2440..34cbd574b 100644 --- a/prost-types/Cargo.toml +++ b/prost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-types" -version = "0.11.8" +version = "0.11.9" authors = [ "Dan Burkert ", "Lucio Franco