Skip to content

Commit ff233bd

Browse files
derekmaurocopybara-github
authored andcommitted
Update main to point to 1.15.2 patch release
PiperOrigin-RevId: 658382055 Change-Id: Ia5eed4bec26da8c8cbe29fbd3a41b44048c25e07
1 parent 3e3b44c commit ff233bd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
cmake_minimum_required(VERSION 3.13)
55

66
project(googletest-distribution)
7-
set(GOOGLETEST_VERSION 1.15.0)
7+
set(GOOGLETEST_VERSION 1.15.2)
88

99
if(NOT CYGWIN AND NOT MSYS AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL QNX)
1010
set(CMAKE_CXX_EXTENSIONS OFF)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ GoogleTest now follows the
99
We recommend
1010
[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).
1111
We do publish occasional semantic versions, tagged with
12-
`v${major}.${minor}.${patch}` (e.g. `v1.15.0`).
12+
`v${major}.${minor}.${patch}` (e.g. `v1.15.2`).
1313

1414
#### Documentation Updates
1515

1616
Our documentation is now live on GitHub Pages at
1717
https://google.github.io/googletest/. We recommend browsing the documentation on
1818
GitHub Pages rather than directly in the repository.
1919

20-
#### Release 1.15.0
20+
#### Release 1.15.2
2121

22-
[Release 1.15.0](https://github.com/google/googletest/releases/tag/v1.15.0) is
22+
[Release 1.15.2](https://github.com/google/googletest/releases/tag/v1.15.2) is
2323
now available.
2424

2525
The 1.15.x branch requires at least C++14.

docs/quickstart-bazel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ with the following content:
4848
4949
# Choose the most recent version available at
5050
# https://registry.bazel.build/modules/googletest
51-
bazel_dep(name = "googletest", version = "1.15.0")
51+
bazel_dep(name = "googletest", version = "1.15.2")
5252
```
5353

5454
Now you're ready to build C++ code that uses GoogleTest.

googletest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ When building GoogleTest as a standalone project, the typical workflow starts
2525
with
2626

2727
```
28-
git clone https://github.com/google/googletest.git -b v1.15.0
28+
git clone https://github.com/google/googletest.git -b v1.15.2
2929
cd googletest # Main directory of the cloned repository.
3030
mkdir build # Create a directory to hold the build output.
3131
cd build

0 commit comments

Comments
 (0)