-
Notifications
You must be signed in to change notification settings - Fork 526
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Release version 0.12.6 (#1065)
_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 fixes a regression: - fix(prost-build): re-export `error_message_protoc_not_found`, `protoc_from_env` & `protoc_include_from_env` (#1063)
- Loading branch information
1 parent
4b11315
commit d43f7e0
Showing
8 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "prost-build" | ||
version = "0.12.5" | ||
version = "0.12.6" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
|
@@ -27,8 +27,8 @@ itertools = { version = ">=0.10, <=0.12", default-features = false, features = [ | |
log = "0.4.4" | ||
multimap = { version = ">=0.8, <=0.10", default-features = false } | ||
petgraph = { version = "0.6", default-features = false } | ||
prost = { version = "0.12.5", path = "../prost", default-features = false } | ||
prost-types = { version = "0.12.5", path = "../prost-types", default-features = false } | ||
prost = { version = "0.12.6", path = "../prost", default-features = false } | ||
prost-types = { version = "0.12.6", path = "../prost-types", default-features = false } | ||
tempfile = "3" | ||
once_cell = "1.17.1" | ||
regex = { version = "1.8.1", default-features = false, features = ["std", "unicode-bool"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "prost-derive" | ||
version = "0.12.5" | ||
version = "0.12.6" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "prost-types" | ||
version = "0.12.5" | ||
version = "0.12.6" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
|
@@ -23,7 +23,7 @@ default = ["std"] | |
std = ["prost/std"] | ||
|
||
[dependencies] | ||
prost = { version = "0.12.5", path = "../prost", default-features = false, features = ["prost-derive"] } | ||
prost = { version = "0.12.6", path = "../prost", default-features = false, features = ["prost-derive"] } | ||
|
||
[dev-dependencies] | ||
proptest = "1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "prost" | ||
version = "0.12.5" | ||
version = "0.12.6" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
|
@@ -30,7 +30,7 @@ std = [] | |
|
||
[dependencies] | ||
bytes = { version = "1", default-features = false } | ||
prost-derive = { version = "0.12.5", path = "../prost-derive", optional = true } | ||
prost-derive = { version = "0.12.6", path = "../prost-derive", optional = true } | ||
|
||
[dev-dependencies] | ||
criterion = { version = "0.4", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters