Skip to content

Commit

Permalink
chore: Prepare 0.11.2 release (#743)
Browse files Browse the repository at this point in the history
_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.
  • Loading branch information
LucioFranco committed Nov 4, 2022
1 parent 8dfeb06 commit cdbd148
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost"
version = "0.11.0"
version = "0.11.2"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com",
Expand Down
2 changes: 1 addition & 1 deletion prost-build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost-build"
version = "0.11.1"
version = "0.11.2"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion 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.
Expand Down
2 changes: 1 addition & 1 deletion prost-derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost-derive"
version = "0.11.0"
version = "0.11.2"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion 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"]

Expand Down
2 changes: 1 addition & 1 deletion prost-types/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost-types"
version = "0.11.1"
version = "0.11.2"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com",
Expand Down
2 changes: 1 addition & 1 deletion prost-types/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost-types/0.11.1")]
#![doc(html_root_url = "https://docs.rs/prost-types/0.11.2")]

//! Protocol Buffers well-known types.
//!
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost/0.11")]
#![doc(html_root_url = "https://docs.rs/prost/0.11.2")]
#![cfg_attr(not(feature = "std"), no_std)]
#![doc = include_str!("../README.md")]

Expand Down

0 comments on commit cdbd148

Please sign in to comment.