From ff233bdd4cac0a0bf6e5cd45bda3406814cb2796 Mon Sep 17 00:00:00 2001 From: Derek Mauro Date: Thu, 1 Aug 2024 06:34:07 -0700 Subject: [PATCH] Update main to point to 1.15.2 patch release PiperOrigin-RevId: 658382055 Change-Id: Ia5eed4bec26da8c8cbe29fbd3a41b44048c25e07 --- CMakeLists.txt | 2 +- README.md | 6 +++--- docs/quickstart-bazel.md | 2 +- googletest/README.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 737b720903..512e5c3d48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.13) project(googletest-distribution) -set(GOOGLETEST_VERSION 1.15.0) +set(GOOGLETEST_VERSION 1.15.2) if(NOT CYGWIN AND NOT MSYS AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL QNX) set(CMAKE_CXX_EXTENSIONS OFF) diff --git a/README.md b/README.md index f50c670534..03c70a1e93 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ GoogleTest now follows the We recommend [updating to the latest commit in the `main` branch as often as possible](https://github.com/abseil/abseil-cpp/blob/master/FAQ.md#what-is-live-at-head-and-how-do-i-do-it). We do publish occasional semantic versions, tagged with -`v${major}.${minor}.${patch}` (e.g. `v1.15.0`). +`v${major}.${minor}.${patch}` (e.g. `v1.15.2`). #### Documentation Updates @@ -17,9 +17,9 @@ Our documentation is now live on GitHub Pages at https://google.github.io/googletest/. We recommend browsing the documentation on GitHub Pages rather than directly in the repository. -#### Release 1.15.0 +#### Release 1.15.2 -[Release 1.15.0](https://github.com/google/googletest/releases/tag/v1.15.0) is +[Release 1.15.2](https://github.com/google/googletest/releases/tag/v1.15.2) is now available. The 1.15.x branch requires at least C++14. diff --git a/docs/quickstart-bazel.md b/docs/quickstart-bazel.md index d14f7c6c38..5750f026f2 100644 --- a/docs/quickstart-bazel.md +++ b/docs/quickstart-bazel.md @@ -48,7 +48,7 @@ with the following content: # Choose the most recent version available at # https://registry.bazel.build/modules/googletest -bazel_dep(name = "googletest", version = "1.15.0") +bazel_dep(name = "googletest", version = "1.15.2") ``` Now you're ready to build C++ code that uses GoogleTest. diff --git a/googletest/README.md b/googletest/README.md index a7d9aa3258..7c3517474d 100644 --- a/googletest/README.md +++ b/googletest/README.md @@ -25,7 +25,7 @@ When building GoogleTest as a standalone project, the typical workflow starts with ``` -git clone https://github.com/google/googletest.git -b v1.15.0 +git clone https://github.com/google/googletest.git -b v1.15.2 cd googletest # Main directory of the cloned repository. mkdir build # Create a directory to hold the build output. cd build