Skip to content

Commit e0643e2

Browse files
committed
release 0.14.3
1 parent 5595b61 commit e0643e2

File tree

10 files changed

+11
-12
lines changed

10 files changed

+11
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ members = [
2121
resolver = "2"
2222

2323
[workspace.package]
24-
version = "0.14.2"
24+
version = "0.14.3"
2525
authors = [
2626
"Dan Burkert <dan@danburkert.com>",
2727
"Lucio Franco <luciofranco14@gmail.com>",

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,9 +381,9 @@ the `std` features in `prost` and `prost-types`:
381381

382382
```ignore
383383
[dependencies]
384-
prost = { version = "0.14.2", default-features = false, features = ["derive"] }
384+
prost = { version = "0.14.3", default-features = false, features = ["derive"] }
385385
# Only necessary if using Protobuf well-known types:
386-
prost-types = { version = "0.14.2", default-features = false }
386+
prost-types = { version = "0.14.3", default-features = false }
387387
```
388388

389389
Additionally, configure `prost-build` to output `BTreeMap`s instead of `HashMap`s

prost-build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ itertools = { version = ">=0.10, <=0.14", default-features = false, features = [
2020
log = "0.4.4"
2121
multimap = { version = ">=0.8, <=0.10", default-features = false }
2222
petgraph = { version = "0.8", default-features = false, features = ["std"] }
23-
prost = { version = "0.14.2", path = "../prost", default-features = false }
24-
prost-types = { version = "0.14.2", path = "../prost-types", default-features = false }
23+
prost = { version = "0.14.3", path = "../prost", default-features = false }
24+
prost-types = { version = "0.14.3", path = "../prost-types", default-features = false }
2525
tempfile = "3"
2626
regex = { version = "1.8.1", default-features = false, features = ["std", "unicode-bool"] }
2727

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.14.2")]
1+
#![doc(html_root_url = "https://docs.rs/prost-build/0.14.3")]
22

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

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.14.2")]
1+
#![doc(html_root_url = "https://docs.rs/prost-derive/0.14.3")]
22
// The `quote!` macro requires deep recursion.
33
#![recursion_limit = "4096"]
44

prost-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ std = ["prost/std"]
1818
arbitrary = ["dep:arbitrary"]
1919

2020
[dependencies]
21-
prost = { version = "0.14.2", path = "../prost", default-features = false, features = ["derive"] }
21+
prost = { version = "0.14.3", path = "../prost", default-features = false, features = ["derive"] }
2222
arbitrary = { version = "1.4", features = ["derive"], optional = true }
2323
chrono = { version = "0.4.34", default-features = false, optional = true }
2424

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

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

prost/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ std = []
2323

2424
[dependencies]
2525
bytes = { version = "1", default-features = false }
26-
prost-derive = { version = "0.14.2", path = "../prost-derive", optional = true }
26+
prost-derive = { version = "0.14.3", path = "../prost-derive", optional = true }
2727

2828
[dev-dependencies]
2929
criterion = { version = "0.7", 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.14.2")]
1+
#![doc(html_root_url = "https://docs.rs/prost/0.14.3")]
22
#![cfg_attr(not(feature = "std"), no_std)]
33
#![doc = include_str!("../README.md")]
44

third_party/protobuf

Submodule protobuf deleted from a4cbdd3

0 commit comments

Comments
 (0)