Update main to point to 1.15.2 patch release

PiperOrigin-RevId: 658382055
Change-Id: Ia5eed4bec26da8c8cbe29fbd3a41b44048c25e07
This commit is contained in:
Derek Mauro 2024-08-01 06:34:07 -07:00 committed by Copybara-Service
parent 3e3b44c300
commit ff233bdd4c
4 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 3.13) cmake_minimum_required(VERSION 3.13)
project(googletest-distribution) 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) if(NOT CYGWIN AND NOT MSYS AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL QNX)
set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_CXX_EXTENSIONS OFF)

View File

@ -9,7 +9,7 @@ GoogleTest now follows the
We recommend 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). [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 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 #### 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 https://google.github.io/googletest/. We recommend browsing the documentation on
GitHub Pages rather than directly in the repository. 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. now available.
The 1.15.x branch requires at least C++14. The 1.15.x branch requires at least C++14.

View File

@ -48,7 +48,7 @@ with the following content:
# Choose the most recent version available at # Choose the most recent version available at
# https://registry.bazel.build/modules/googletest # 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. Now you're ready to build C++ code that uses GoogleTest.

View File

@ -25,7 +25,7 @@ When building GoogleTest as a standalone project, the typical workflow starts
with 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. cd googletest # Main directory of the cloned repository.
mkdir build # Create a directory to hold the build output. mkdir build # Create a directory to hold the build output.
cd build cd build