From 6e5405db2217d37006720c101beb1b91199a3a26 Mon Sep 17 00:00:00 2001 From: Bastien Jacot-Guillarmod Date: Fri, 25 Aug 2023 01:34:27 -0700 Subject: [PATCH] Bump the version number in Cargo.toml to 0.10. PiperOrigin-RevId: 560017342 --- googletest/Cargo.toml | 4 ++-- googletest_macro/Cargo.toml | 2 +- integration_tests/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/googletest/Cargo.toml b/googletest/Cargo.toml index 601c3ceb..eada80bf 100644 --- a/googletest/Cargo.toml +++ b/googletest/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "googletest" -version = "0.9.0" +version = "0.10.0" keywords = ["unit", "matcher", "testing", "assertions"] categories = ["development-tools", "development-tools::testing"] description = "A rich assertion and matcher library inspired by GoogleTest for C++" @@ -31,7 +31,7 @@ authors = [ ] [dependencies] -googletest_macro = { path = "../googletest_macro", version = "0.9.0" } +googletest_macro = { path = "../googletest_macro", version = "0.10.0" } anyhow = { version = "1", optional = true } num-traits = "0.2.15" proptest = { version = "1.2.0", optional = true } diff --git a/googletest_macro/Cargo.toml b/googletest_macro/Cargo.toml index d0b60e15..034d4652 100644 --- a/googletest_macro/Cargo.toml +++ b/googletest_macro/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "googletest_macro" -version = "0.9.0" +version = "0.10.0" keywords = ["unit", "matcher", "testing", "assertions"] categories = ["development-tools", "development-tools::testing"] description = "Procedural macros for GoogleTest Rust" diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index 5509613e..8768c84b 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "integration_tests" -version = "0.9.0" +version = "0.10.0" description = "Integration tests for GoogleTest Rust" repository = "https://github.com/google/googletest-rust" license = "Apache-2.0" @@ -28,7 +28,7 @@ authors = [ ] [dependencies] -googletest = { path = "../googletest", version = "0.9.0", features = ["anyhow"] } +googletest = { path = "../googletest", version = "0.10.0", features = ["anyhow"] } anyhow = "1" indoc = "2" rstest = "0.13.0"