Skip to content

Commit

Permalink
Update main to point to 1.15.2 patch release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 658382055
Change-Id: Ia5eed4bec26da8c8cbe29fbd3a41b44048c25e07
  • Loading branch information
derekmauro authored and copybara-github committed Aug 1, 2024
1 parent 3e3b44c commit ff233bd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ 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

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.
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart-bazel.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion googletest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ff233bd

Please sign in to comment.