Skip to content

Commit a866428

Browse files
derekmaurocopybara-github
authored andcommittedFeb 7, 2025
Update docs for v1.16.x branch
Also update the minimum required CMake version https://github.com/google/oss-policies-info/blob/main/foundational-cxx-support-matrix.md PiperOrigin-RevId: 724375734 Change-Id: Iefa6c7e2061457bc6149a280d2408085b1fb9d11
1 parent 445e9bd commit a866428

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed
 

‎CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Note: CMake support is community-based. The maintainers do not use CMake
22
# internally.
33

4-
cmake_minimum_required(VERSION 3.13)
4+
cmake_minimum_required(VERSION 3.16)
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)

‎README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,23 @@ 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.
26+
27+
The 1.16.x branch will be the last to support C++14. Future development will
28+
[require at least C++17](https://opensource.google/documentation/policies/cplusplus-support#c_language_standard).
2629

2730
#### Continuous Integration
2831

‎googletest/README.md

+1-1
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)