Skip to content

Commit 3cf34f0

Browse files
authored
prost: prepare release 0.12.2 (#943)
1 parent 3ce212f commit 3cf34f0

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

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.1"
3+
version = "0.12.2"
44
authors = [
55
"Dan Burkert <[email protected]>",
66
"Lucio Franco <[email protected]",
@@ -48,7 +48,7 @@ std = []
4848

4949
[dependencies]
5050
bytes = { version = "1", default-features = false }
51-
prost-derive = { version = "0.12.1", path = "prost-derive", optional = true }
51+
prost-derive = { version = "0.12.2", path = "prost-derive", optional = true }
5252

5353
[dev-dependencies]
5454
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.1"
3+
version = "0.12.2"
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"
2828
multimap = { version = "0.8", default-features = false }
2929
petgraph = { version = "0.6", default-features = false }
30-
prost = { version = "0.12.1", path = "..", default-features = false }
31-
prost-types = { version = "0.12.1", path = "../prost-types", default-features = false }
30+
prost = { version = "0.12.2", path = "..", default-features = false }
31+
prost-types = { version = "0.12.2", 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.1")]
1+
#![doc(html_root_url = "https://docs.rs/prost-build/0.12.2")]
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.1"
3+
version = "0.12.2"
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.1")]
1+
#![doc(html_root_url = "https://docs.rs/prost-derive/0.12.2")]
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.1"
3+
version = "0.12.2"
44
authors = [
55
"Dan Burkert <[email protected]>",
66
"Lucio Franco <[email protected]",
@@ -22,7 +22,7 @@ default = ["std"]
2222
std = ["prost/std"]
2323

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

2727
[dev-dependencies]
2828
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.1")]
1+
#![doc(html_root_url = "https://docs.rs/prost-types/0.12.2")]
22

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

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.1")]
1+
#![doc(html_root_url = "https://docs.rs/prost/0.12.2")]
22
#![cfg_attr(not(feature = "std"), no_std)]
33
#![doc = include_str!("../README.md")]
44

0 commit comments

Comments
 (0)