Skip to content

Commit d5395ba

Browse files
committed
release 0.11.8
1 parent 0f53e3d commit d5395ba

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

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

5353
[dev-dependencies]
5454
criterion = "0.3"

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.11.7"
3+
version = "0.11.8"
44
authors = [
55
"Dan Burkert <dan@danburkert.com>",
66
"Lucio Franco <luciofranco14@gmail.com>",
@@ -27,8 +27,8 @@ itertools = { version = "0.10", default-features = false, features = ["use_alloc
2727
log = "0.4"
2828
multimap = { version = "0.8", default-features = false }
2929
petgraph = { version = "0.6", default-features = false }
30-
prost = { version = "0.11.7", path = "..", default-features = false }
31-
prost-types = { version = "0.11.7", path = "../prost-types", default-features = false }
30+
prost = { version = "0.11.8", path = "..", default-features = false }
31+
prost-types = { version = "0.11.8", path = "../prost-types", default-features = false }
3232
tempfile = "3"
3333
lazy_static = "1.4.0"
3434
regex = { version = "1.5.5", 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.11.7")]
1+
#![doc(html_root_url = "https://docs.rs/prost-build/0.11.8")]
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.11.7"
3+
version = "0.11.8"
44
authors = [
55
"Dan Burkert <dan@danburkert.com>",
66
"Lucio Franco <luciofranco14@gmail.com>",

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.11.7")]
1+
#![doc(html_root_url = "https://docs.rs/prost-derive/0.11.8")]
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.11.7"
3+
version = "0.11.8"
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.11.7", path = "..", default-features = false, features = ["prost-derive"] }
25+
prost = { version = "0.11.8", 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.11.7")]
1+
#![doc(html_root_url = "https://docs.rs/prost-types/0.11.8")]
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.11.7")]
1+
#![doc(html_root_url = "https://docs.rs/prost/0.11.8")]
22
#![cfg_attr(not(feature = "std"), no_std)]
33
#![doc = include_str!("../README.md")]
44

0 commit comments

Comments
 (0)