From cd607bb1128b73870d48a854763e882a5cb174d4 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Wed, 22 Feb 2023 10:08:02 -0500 Subject: [PATCH] release 0.11.7 (#821) --- Cargo.toml | 4 ++-- prost-build/Cargo.toml | 6 +++--- prost-build/src/lib.rs | 2 +- prost-derive/Cargo.toml | 2 +- prost-derive/src/lib.rs | 2 +- prost-types/Cargo.toml | 4 ++-- prost-types/src/lib.rs | 2 +- src/lib.rs | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 71cabda82..b63de35fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost" -version = "0.11.6" +version = "0.11.7" 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.6", path = "..", default-features = false } -prost-types = { version = "0.11.6", path = "../prost-types", default-features = false } +prost = { version = "0.11.7", path = "..", default-features = false } +prost-types = { version = "0.11.7", 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 c105bd528..63b3f5e0e 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.6")] +#![doc(html_root_url = "https://docs.rs/prost-build/0.11.7")] #![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 68c5d8e88..c39f767cb 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-derive" -version = "0.11.6" +version = "0.11.7" authors = [ "Dan Burkert ", "Lucio Franco ", diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index a9825c9f6..c896af2ca 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.6")] +#![doc(html_root_url = "https://docs.rs/prost-derive/0.11.7")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index 0f6e80213..58e2ebadc 100644 --- a/prost-types/Cargo.toml +++ b/prost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-types" -version = "0.11.6" +version = "0.11.7" authors = [ "Dan Burkert ", "Lucio Franco