Skip to content

Commit 6910c9d

Browse files
authored
Prepare for v1.16.0 (#4721)
1 parent 445e9bd commit 6910c9d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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.2)
7+
set(GOOGLETEST_VERSION 1.16.0)
88

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

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
module(
3434
name = "googletest",
35-
version = "head",
35+
version = "1.16.0",
3636
compatibility_level = 1,
3737
)
3838

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ 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.2`).
12+
`v${major}.${minor}.${patch}` (e.g. `v1.16.0`).
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.2
20+
#### Release 1.16.0
2121

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

25-
The 1.15.x branch requires at least C++14.
25+
The 1.16.x branch requires at least C++14.
2626

2727
#### Continuous Integration
2828

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.2
28+
git clone https://github.com/google/googletest.git -b v1.16.0
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)