Skip to content

Commit

Permalink
Prepare 0.10.4 release (#656)
Browse files Browse the repository at this point in the history
* Disable running protobuf tests when building vendored protoc (#655)

* Prepare 0.10.4 release

Co-authored-by: Richard Newton <richard_newton@waters.com>
  • Loading branch information
LucioFranco and ricnewton committed May 24, 2022
1 parent 48160ef commit c2d70d9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost"
version = "0.10.3"
version = "0.10.4"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Tokio Contributors <team@tokio.rs>",
Expand Down
2 changes: 1 addition & 1 deletion prost-build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "prost-build"
version = "0.10.3"
version = "0.10.4"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Tokio Contributors <team@tokio.rs>",
Expand Down
4 changes: 3 additions & 1 deletion prost-build/build.rs
Expand Up @@ -79,7 +79,9 @@ fn compile() -> Option<PathBuf> {

println!("cargo:rerun-if-changed={}", protobuf_src.display());

let dst = cmake::Config::new(protobuf_src).build();
let dst = cmake::Config::new(protobuf_src)
.define("protobuf_BUILD_TESTS", "OFF")
.build();

Some(dst.join("bin").join("protoc"))
}
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.10.3")]
#![doc(html_root_url = "https://docs.rs/prost-build/0.10.4")]
#![allow(clippy::option_as_ref_deref)]

//! `prost-build` compiles `.proto` files into Rust.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost/0.10.3")]
#![doc(html_root_url = "https://docs.rs/prost/0.10.4")]
#![cfg_attr(not(feature = "std"), no_std)]

// Re-export the alloc crate for use within derived code.
Expand Down

0 comments on commit c2d70d9

Please sign in to comment.