diff --git a/prost-build/Cargo.toml b/prost-build/Cargo.toml index cee09c096..082c6fb73 100644 --- a/prost-build/Cargo.toml +++ b/prost-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-build" -version = "0.12.4" +version = "0.12.5" authors = [ "Dan Burkert ", "Lucio Franco ", @@ -27,8 +27,8 @@ itertools = { version = ">=0.10, <=0.12", default-features = false, features = [ log = "0.4.4" multimap = { version = ">=0.8, <=0.10", default-features = false } petgraph = { version = "0.6", default-features = false } -prost = { version = "0.12.4", path = "../prost", default-features = false } -prost-types = { version = "0.12.4", path = "../prost-types", default-features = false } +prost = { version = "0.12.5", path = "../prost", default-features = false } +prost-types = { version = "0.12.5", path = "../prost-types", default-features = false } tempfile = "3" once_cell = "1.17.1" regex = { version = "1.8.1", default-features = false, features = ["std", "unicode-bool"] } diff --git a/prost-build/src/lib.rs b/prost-build/src/lib.rs index 304f82e4b..2adccff71 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.12.2")] +#![doc(html_root_url = "https://docs.rs/prost-build/0.12.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 1783b2fdd..fbff78b54 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-derive" -version = "0.12.4" +version = "0.12.5" authors = [ "Dan Burkert ", "Lucio Franco ", diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index 13f0a6878..58952fbdc 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.12.2")] +#![doc(html_root_url = "https://docs.rs/prost-derive/0.12.5")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index 8c9d455b3..0618d8f61 100644 --- a/prost-types/Cargo.toml +++ b/prost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-types" -version = "0.12.4" +version = "0.12.5" authors = [ "Dan Burkert ", "Lucio Franco ", @@ -23,7 +23,7 @@ default = ["std"] std = ["prost/std"] [dependencies] -prost = { version = "0.12.4", path = "../prost", default-features = false, features = ["prost-derive"] } +prost = { version = "0.12.5", path = "../prost", default-features = false, features = ["prost-derive"] } [dev-dependencies] proptest = "1" diff --git a/prost-types/src/lib.rs b/prost-types/src/lib.rs index 3196f4426..f6fbb3aa5 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.12.2")] +#![doc(html_root_url = "https://docs.rs/prost-types/0.12.5")] //! Protocol Buffers well-known types. //! diff --git a/prost/Cargo.toml b/prost/Cargo.toml index 8dacdd3b3..2e189ac6a 100644 --- a/prost/Cargo.toml +++ b/prost/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost" -version = "0.12.4" +version = "0.12.5" authors = [ "Dan Burkert ", "Lucio Franco ", @@ -30,7 +30,7 @@ std = [] [dependencies] bytes = { version = "1", default-features = false } -prost-derive = { version = "0.12.4", path = "../prost-derive", optional = true } +prost-derive = { version = "0.12.5", path = "../prost-derive", optional = true } [dev-dependencies] criterion = { version = "0.4", default-features = false } diff --git a/prost/src/lib.rs b/prost/src/lib.rs index 32b36f5cf..113f4c836 100644 --- a/prost/src/lib.rs +++ b/prost/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost/0.12.2")] +#![doc(html_root_url = "https://docs.rs/prost/0.12.5")] #![cfg_attr(not(feature = "std"), no_std)] #![doc = include_str!("../../README.md")]