Skip to content

Commit f19104a

Browse files
authored
chore: prepare 0.13.1 release (#1099)
* release 0.13.1 * update changelog
1 parent 26463f4 commit f19104a

File tree

11 files changed

+23
-13
lines changed

11 files changed

+23
-13
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
1+
# Prost version 0.13.1
2+
3+
_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.
4+
5+
## Bug fixes
6+
7+
* Enum variant named Error causes ambiguous item (#1098)
8+
19
# PROST version 0.13.0
210

11+
**note**: this version was yanked in favor of 0.13.1
12+
313
_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.
414

515
This major update brings new features and fixes:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ exclude = [
2323
resolver = "2"
2424

2525
[workspace.package]
26-
version = "0.13.0"
26+
version = "0.13.1"
2727
authors = [
2828
"Dan Burkert <[email protected]>",
2929
"Lucio Franco <[email protected]>",

README.md

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

381381
```ignore
382382
[dependencies]
383-
prost = { version = "0.13.0", default-features = false, features = ["prost-derive"] }
383+
prost = { version = "0.13.1", default-features = false, features = ["prost-derive"] }
384384
# Only necessary if using Protobuf well-known types:
385-
prost-types = { version = "0.13.0", default-features = false }
385+
prost-types = { version = "0.13.1", default-features = false }
386386
```
387387

388388
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
@@ -21,8 +21,8 @@ itertools = { version = ">=0.10, <=0.13", default-features = false, features = [
2121
log = "0.4.4"
2222
multimap = { version = ">=0.8, <=0.10", default-features = false }
2323
petgraph = { version = "0.6", default-features = false }
24-
prost = { version = "0.13.0", path = "../prost", default-features = false }
25-
prost-types = { version = "0.13.0", path = "../prost-types", default-features = false }
24+
prost = { version = "0.13.1", path = "../prost", default-features = false }
25+
prost-types = { version = "0.13.1", path = "../prost-types", default-features = false }
2626
tempfile = "3"
2727
once_cell = "1.17.1"
2828
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.13.0")]
1+
#![doc(html_root_url = "https://docs.rs/prost-build/0.13.1")]
22
#![allow(clippy::option_as_ref_deref, clippy::format_push_string)]
33

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

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.13.0")]
1+
#![doc(html_root_url = "https://docs.rs/prost-derive/0.13.1")]
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
@@ -17,7 +17,7 @@ default = ["std"]
1717
std = ["prost/std"]
1818

1919
[dependencies]
20-
prost = { version = "0.13.0", path = "../prost", default-features = false, features = ["prost-derive"] }
20+
prost = { version = "0.13.1", path = "../prost", default-features = false, features = ["prost-derive"] }
2121

2222
[dev-dependencies]
2323
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.13.0")]
1+
#![doc(html_root_url = "https://docs.rs/prost-types/0.13.1")]
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
@@ -24,7 +24,7 @@ std = []
2424

2525
[dependencies]
2626
bytes = { version = "1", default-features = false }
27-
prost-derive = { version = "0.13.0", path = "../prost-derive", optional = true }
27+
prost-derive = { version = "0.13.1", path = "../prost-derive", optional = true }
2828

2929
[dev-dependencies]
3030
criterion = { version = "0.5", default-features = false }

prost/README.md

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

381381
```ignore
382382
[dependencies]
383-
prost = { version = "0.13.0", default-features = false, features = ["prost-derive"] }
383+
prost = { version = "0.13.1", default-features = false, features = ["prost-derive"] }
384384
# Only necessary if using Protobuf well-known types:
385-
prost-types = { version = "0.13.0", default-features = false }
385+
prost-types = { version = "0.13.1", default-features = false }
386386
```
387387

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

0 commit comments

Comments
 (0)