Skip to content

Commit

Permalink
release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Sep 1, 2023
1 parent 7ce9b97 commit 10582c2
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost"
version = "0.11.9"
version = "0.12.0"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com",
Expand Down Expand Up @@ -48,7 +48,7 @@ std = []

[dependencies]
bytes = { version = "1", default-features = false }
prost-derive = { version = "0.11.9", path = "prost-derive", optional = true }
prost-derive = { version = "0.12.0", path = "prost-derive", optional = true }

[dev-dependencies]
criterion = { version = "0.4", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -30,9 +30,9 @@ First, add `prost` and its public dependencies to your `Cargo.toml`:

```ignore
[dependencies]
prost = "0.11"
prost = "0.12"
# Only necessary if using Protobuf well-known types:
prost-types = "0.11"
prost-types = "0.12"
```

The recommended way to add `.proto` compilation to a Cargo project is to use the
Expand Down
6 changes: 3 additions & 3 deletions prost-build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost-build"
version = "0.11.9"
version = "0.12.0"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com>",
Expand All @@ -27,8 +27,8 @@ itertools = { version = ">=0.10, <0.12", default-features = false, features = ["
log = "0.4"
multimap = { version = "0.8", default-features = false }
petgraph = { version = "0.6", default-features = false }
prost = { version = "0.11.9", path = "..", default-features = false }
prost-types = { version = "0.11.9", path = "../prost-types", default-features = false }
prost = { version = "0.12.0", path = "..", default-features = false }
prost-types = { version = "0.12.0", 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"] }
Expand Down
2 changes: 1 addition & 1 deletion prost-build/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost-build/0.11.9")]
#![doc(html_root_url = "https://docs.rs/prost-build/0.12.0")]
#![allow(clippy::option_as_ref_deref, clippy::format_push_string)]

//! `prost-build` compiles `.proto` files into Rust.
Expand Down
2 changes: 1 addition & 1 deletion prost-derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost-derive"
version = "0.11.9"
version = "0.12.0"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion prost-derive/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost-derive/0.11.9")]
#![doc(html_root_url = "https://docs.rs/prost-derive/0.12.0")]
// The `quote!` macro requires deep recursion.
#![recursion_limit = "4096"]

Expand Down
4 changes: 2 additions & 2 deletions prost-types/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost-types"
version = "0.11.9"
version = "0.12.0"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com",
Expand All @@ -22,7 +22,7 @@ default = ["std"]
std = ["prost/std"]

[dependencies]
prost = { version = "0.11.9", path = "..", default-features = false, features = ["prost-derive"] }
prost = { version = "0.12.0", path = "..", default-features = false, features = ["prost-derive"] }

[dev-dependencies]
proptest = "1"
2 changes: 1 addition & 1 deletion prost-types/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost-types/0.11.9")]
#![doc(html_root_url = "https://docs.rs/prost-types/0.12.0")]

//! Protocol Buffers well-known types.
//!
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost/0.11.9")]
#![doc(html_root_url = "https://docs.rs/prost/0.12.0")]
#![cfg_attr(not(feature = "std"), no_std)]
#![doc = include_str!("../README.md")]

Expand Down

0 comments on commit 10582c2

Please sign in to comment.