Skip to content

Commit 38a00d8

Browse files
authored
chore: Release version 0.12.4 (#1024)
_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 features and fixes: - Bump MSRV to 1.70 (minimum supported Rust version) - Rename cargo feature `prost-derive` to `derive` (#992) - Add @generated comment on top of generated files (#935) - Optimize implementation of prost::Name when generated by prost-build (#956) ## Dependencies - build(deps): Allow itertools 0.12 (#948) - build(deps): Allow heck 0.5 (#1012) - build(deps): Allow multimap 0.10 (#1013) ## Documentation - Improve protoc not found error message (#937) - build: Add development container config (#949) - docs: Fixed README typos (#952 / #967 / #970) ## Internal - chore: Fix minimal versions (#920) - fix: fq_message_name should begin with one dot (#981) - improve encode_varint performance by bounding its loop (#940) - style: Remove duplicate function call (#989) - test: Improve test decode_varint_slow (#977) - chore: Add dep: prefix to feature dependencies (#919) - Minor clippy lint fixes. (#1006) - chore: Use taiki-e/install-action to setup cargo-machete (#909) - chore: Remove which dependency. (#962) - chore: Update to actions/checkout@v4 (#910)
1 parent b3de938 commit 38a00d8

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

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.3"
3+
version = "0.12.4"
44
authors = [
55
"Dan Burkert <dan@danburkert.com>",
66
"Lucio Franco <luciofranco14@gmail.com",
@@ -50,7 +50,7 @@ std = []
5050

5151
[dependencies]
5252
bytes = { version = "1", default-features = false }
53-
prost-derive = { version = "0.12.3", path = "prost-derive", optional = true }
53+
prost-derive = { version = "0.12.4", path = "prost-derive", optional = true }
5454

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

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.3"
3+
version = "0.12.4"
44
authors = [
55
"Dan Burkert <dan@danburkert.com>",
66
"Lucio Franco <luciofranco14@gmail.com>",
@@ -26,8 +26,8 @@ itertools = { version = ">=0.10, <=0.12", default-features = false, features = [
2626
log = "0.4.4"
2727
multimap = { version = ">=0.8, <=0.10", default-features = false }
2828
petgraph = { version = "0.6", default-features = false }
29-
prost = { version = "0.12.3", path = "..", default-features = false }
30-
prost-types = { version = "0.12.3", path = "../prost-types", default-features = false }
29+
prost = { version = "0.12.4", path = "..", default-features = false }
30+
prost-types = { version = "0.12.4", path = "../prost-types", default-features = false }
3131
tempfile = "3"
3232
once_cell = "1.17.1"
3333
regex = { version = "1.8.1", default-features = false, features = ["std", "unicode-bool"] }

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.3"
3+
version = "0.12.4"
44
authors = [
55
"Dan Burkert <dan@danburkert.com>",
66
"Lucio Franco <luciofranco14@gmail.com>",

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.3"
3+
version = "0.12.4"
44
authors = [
55
"Dan Burkert <dan@danburkert.com>",
66
"Lucio Franco <luciofranco14@gmail.com",
@@ -22,7 +22,7 @@ default = ["std"]
2222
std = ["prost/std"]
2323

2424
[dependencies]
25-
prost = { version = "0.12.3", path = "..", default-features = false, features = ["prost-derive"] }
25+
prost = { version = "0.12.4", path = "..", default-features = false, features = ["prost-derive"] }
2626

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

0 commit comments

Comments
 (0)