Skip to content

Commit 9730c05

Browse files
committed
chore: Release version 0.12.5
_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 update brings new fixes: - fix: include_file should handle proto without package (tokio-rs#1002) - Place Config::format behind the format feature flag - Handle keyword `Self` after stripping enum type prefix (tokio-rs#998) ## Documentation - fix(readme): fix the link and badge for CI (tokio-rs#1049) ## Internal - style(codegen): `Syntax` to a separate file (tokio-rs#1029) - chore(codegen): extract c string escaping to a separate file (tokio-rs#1028) - style(prost-build): `CodeGenerator::boxed` method (tokio-rs#1019) - style(prost-build): Consolidate field data into struct (tokio-rs#1017) - style(prost-build): `BytesType and MapType` into a `collections` module. (tokio-rs#1030) - style(prost-build): Split `Config` and `Module` into a separate module and files (tokio-rs#1020) - style(prost-build): prost_path helper (tokio-rs#1018) - style: Fix toml indent (tokio-rs#1048) - style: Fix clippy warnings and enable clippy in CI (tokio-rs#1008) - build: Use git submodule to download protobuf sources (tokio-rs#1014) - ci: Add TOML validation with `taplo` (tokio-rs#1034) - tests: Create a separate tempdir for each test (tokio-rs#1044) - tests: Remove GoogleMessage3 and GoogleMessage4 benchmarks (tokio-rs#1037) - chore: Update internal crates to Rust edition 2021 (tokio-rs#1039) - chore: Update crate descriptions (tokio-rs#1038) - chore: Fix clippy checks in CI (tokio-rs#1032) - chore: Add Casper Meijn as author (tokio-rs#1025)
1 parent baddf98 commit 9730c05

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

prost-build/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "prost-build"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
authors = [
55
"Dan Burkert <[email protected]>",
66
"Lucio Franco <[email protected]>",
@@ -27,8 +27,8 @@ itertools = { version = ">=0.10, <=0.12", default-features = false, features = [
2727
log = "0.4.4"
2828
multimap = { version = ">=0.8, <=0.10", default-features = false }
2929
petgraph = { version = "0.6", default-features = false }
30-
prost = { version = "0.12.4", path = "../prost", default-features = false }
31-
prost-types = { version = "0.12.4", path = "../prost-types", default-features = false }
30+
prost = { version = "0.12.5", path = "../prost", default-features = false }
31+
prost-types = { version = "0.12.5", path = "../prost-types", default-features = false }
3232
tempfile = "3"
3333
once_cell = "1.17.1"
3434
regex = { version = "1.8.1", default-features = false, features = ["std", "unicode-bool"] }

prost-build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/prost-build/0.12.2")]
1+
#![doc(html_root_url = "https://docs.rs/prost-build/0.12.5")]
22
#![allow(clippy::option_as_ref_deref, clippy::format_push_string)]
33

44
//! `prost-build` compiles `.proto` files into Rust.

prost-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "prost-derive"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
authors = [
55
"Dan Burkert <[email protected]>",
66
"Lucio Franco <[email protected]>",

prost-derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/prost-derive/0.12.2")]
1+
#![doc(html_root_url = "https://docs.rs/prost-derive/0.12.5")]
22
// The `quote!` macro requires deep recursion.
33
#![recursion_limit = "4096"]
44

prost-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "prost-types"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
authors = [
55
"Dan Burkert <[email protected]>",
66
"Lucio Franco <[email protected]>",
@@ -23,7 +23,7 @@ default = ["std"]
2323
std = ["prost/std"]
2424

2525
[dependencies]
26-
prost = { version = "0.12.4", path = "../prost", default-features = false, features = ["prost-derive"] }
26+
prost = { version = "0.12.5", path = "../prost", default-features = false, features = ["prost-derive"] }
2727

2828
[dev-dependencies]
2929
proptest = "1"

prost-types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/prost-types/0.12.2")]
1+
#![doc(html_root_url = "https://docs.rs/prost-types/0.12.5")]
22

33
//! Protocol Buffers well-known types.
44
//!

prost/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "prost"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
authors = [
55
"Dan Burkert <[email protected]>",
66
"Lucio Franco <[email protected]>",
@@ -30,7 +30,7 @@ std = []
3030

3131
[dependencies]
3232
bytes = { version = "1", default-features = false }
33-
prost-derive = { version = "0.12.4", path = "../prost-derive", optional = true }
33+
prost-derive = { version = "0.12.5", path = "../prost-derive", optional = true }
3434

3535
[dev-dependencies]
3636
criterion = { version = "0.4", default-features = false }

prost/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/prost/0.12.2")]
1+
#![doc(html_root_url = "https://docs.rs/prost/0.12.5")]
22
#![cfg_attr(not(feature = "std"), no_std)]
33
#![doc = include_str!("../../README.md")]
44

0 commit comments

Comments
 (0)