From 7c0916d908c2d088ddb64a7e8849bfc839f6a3de Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Wed, 13 Oct 2021 20:24:46 +0000 Subject: [PATCH] release 0.9.0 --- Cargo.toml | 4 ++-- README.md | 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 +- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5441d03e1..a1225ae6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost" -version = "0.8.0" +version = "0.9.0" authors = [ "Dan Burkert ", "Tokio Contributors ", @@ -46,7 +46,7 @@ std = [] [dependencies] bytes = { version = "1", default-features = false } -prost-derive = { version = "0.8.0", path = "prost-derive", optional = true } +prost-derive = { version = "0.9.0", path = "prost-derive", optional = true } [dev-dependencies] criterion = "0.3" diff --git a/README.md b/README.md index 99fc9ab53..4d526af29 100644 --- a/README.md +++ b/README.md @@ -29,9 +29,9 @@ First, add `prost` and its public dependencies to your `Cargo.toml`: ``` [dependencies] -prost = "0.8" +prost = "0.9" # Only necessary if using Protobuf well-known types: -prost-types = "0.8" +prost-types = "0.9" ``` The recommended way to add `.proto` compilation to a Cargo project is to use the diff --git a/prost-build/Cargo.toml b/prost-build/Cargo.toml index 24faedc21..a4da24a3c 100644 --- a/prost-build/Cargo.toml +++ b/prost-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-build" -version = "0.8.0" +version = "0.9.0" authors = [ "Dan Burkert ", "Tokio Contributors ", @@ -19,8 +19,8 @@ itertools = "0.10" log = "0.4" multimap = { version = "0.8", default-features = false } petgraph = { version = "0.6", default-features = false } -prost = { version = "0.8.0", path = "..", default-features = false } -prost-types = { version = "0.8.0", path = "../prost-types", default-features = false } +prost = { version = "0.9.0", path = "..", default-features = false } +prost-types = { version = "0.9.0", path = "../prost-types", default-features = false } tempfile = "3" lazy_static = "1.4.0" regex = "1.5.4" diff --git a/prost-build/src/lib.rs b/prost-build/src/lib.rs index 073e6e0e1..6ce32409a 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.8.0")] +#![doc(html_root_url = "https://docs.rs/prost-build/0.9.0")] #![allow(clippy::option_as_ref_deref)] //! `prost-build` compiles `.proto` files into Rust. diff --git a/prost-derive/Cargo.toml b/prost-derive/Cargo.toml index 270a07bf1..dd41b0d01 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-derive" -version = "0.8.0" +version = "0.9.0" authors = [ "Dan Burkert ", "Tokio Contributors ", diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index 3cc23a533..74608d56d 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.8.0")] +#![doc(html_root_url = "https://docs.rs/prost-derive/0.9.0")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index 7b69ce901..dc4b35fbd 100644 --- a/prost-types/Cargo.toml +++ b/prost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-types" -version = "0.8.0" +version = "0.9.0" authors = [ "Dan Burkert ", "Tokio Contributors ", @@ -21,7 +21,7 @@ std = ["prost/std"] [dependencies] bytes = { version = "1", default-features = false } -prost = { version = "0.8.0", path = "..", default-features = false, features = ["prost-derive"] } +prost = { version = "0.9.0", path = "..", 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 a74805c70..04c2d1505 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.8.0")] +#![doc(html_root_url = "https://docs.rs/prost-types/0.9.0")] //! Protocol Buffers well-known types. //! diff --git a/src/lib.rs b/src/lib.rs index 9d4069e76..697a1ce77 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost/0.8.0")] +#![doc(html_root_url = "https://docs.rs/prost/0.9.0")] #![cfg_attr(not(feature = "std"), no_std)] // Re-export the alloc crate for use within derived code.