From cdbd148eea999a5e106260483bc12ef10686f0f7 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Fri, 4 Nov 2022 14:01:40 -0400 Subject: [PATCH] chore: Prepare `0.11.2` release (#743) _PROST!_ is a [Protocol Buffers](https://developers.google.com/protocol-buffers/) implementation for the [Rust Language](https://www.rust-lang.org/). `prost` generates simple, idiomatic Rust code from `proto2` and `proto3` files. This patch updates brings a few new features and fixes: - build: Improve `protoc` sourcing instructions in error messages. - build: Add `Clone` to `Service` types. - build: Sort modules to produce deterministic include files. - core: Tuple struct support. - build: Allow generated code derive path's to be changed. - build: Allow changing prost crate path. - build: Add code formatting support. --- Cargo.toml | 2 +- prost-build/Cargo.toml | 2 +- prost-build/src/lib.rs | 2 +- prost-derive/Cargo.toml | 2 +- prost-derive/src/lib.rs | 2 +- prost-types/Cargo.toml | 2 +- prost-types/src/lib.rs | 2 +- src/lib.rs | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 382a87ec6..ac7aa73f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost" -version = "0.11.0" +version = "0.11.2" authors = [ "Dan Burkert ", "Lucio Franco ", "Lucio Franco ", diff --git a/prost-build/src/lib.rs b/prost-build/src/lib.rs index 129601a03..3f1eda21b 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.1")] +#![doc(html_root_url = "https://docs.rs/prost-build/0.11.2")] #![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 3f4148425..58e3b1649 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-derive" -version = "0.11.0" +version = "0.11.2" authors = [ "Dan Burkert ", "Lucio Franco ", diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index 9a77a7a3b..b90c9df5a 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.10.1")] +#![doc(html_root_url = "https://docs.rs/prost-derive/0.10.2")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index e2837c012..8893b00eb 100644 --- a/prost-types/Cargo.toml +++ b/prost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prost-types" -version = "0.11.1" +version = "0.11.2" authors = [ "Dan Burkert ", "Lucio Franco