summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2024-08-01 13:34:07 (GMT)
committerCopybara-Service <copybara-worker@google.com>2024-08-01 13:34:56 (GMT)
commitff233bdd4cac0a0bf6e5cd45bda3406814cb2796 (patch)
tree051b8b9c8d2271cb33d79489548f42ca04ddf237
parent3e3b44c300b21eb996a2957782421bc0f157af18 (diff)
downloadgoogletest-ff233bdd4cac0a0bf6e5cd45bda3406814cb2796.zip
googletest-ff233bdd4cac0a0bf6e5cd45bda3406814cb2796.tar.gz
googletest-ff233bdd4cac0a0bf6e5cd45bda3406814cb2796.tar.bz2
Update main to point to 1.15.2 patch release
PiperOrigin-RevId: 658382055 Change-Id: Ia5eed4bec26da8c8cbe29fbd3a41b44048c25e07
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md6
-rw-r--r--docs/quickstart-bazel.md2
-rw-r--r--googletest/README.md2
4 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 737b720..512e5c3 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 f50c670..03c70a1 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 d14f7c6..5750f02 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 a7d9aa3..7c35174 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