diff options
author | Derek Mauro <761129+derekmauro@users.noreply.github.com> | 2024-07-15 17:46:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-15 17:46:49 (GMT) |
commit | e39786088138f2749d64e9e90e0f9902daa77c40 (patch) | |
tree | ac274cb83b7485b187fdc5fd43c7940017686a24 | |
parent | 7321f950dfe0d481b56b1c475e38b681ff34263f (diff) | |
download | googletest-e39786088138f2749d64e9e90e0f9902daa77c40.zip googletest-e39786088138f2749d64e9e90e0f9902daa77c40.tar.gz googletest-e39786088138f2749d64e9e90e0f9902daa77c40.tar.bz2 |
Prepare for v1.15.0 (#4574)v1.15.0-prev1.15.0
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | MODULE.bazel | 2 | ||||
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | googletest/README.md | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e6d644..737b720 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.13) project(googletest-distribution) -set(GOOGLETEST_VERSION 1.14.0) +set(GOOGLETEST_VERSION 1.15.0) if(NOT CYGWIN AND NOT MSYS AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL QNX) set(CMAKE_CXX_EXTENSIONS OFF) diff --git a/MODULE.bazel b/MODULE.bazel index b179fe9..416cf38 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -32,7 +32,7 @@ module( name = "googletest", - version = "head", + version = "1.15.0", compatibility_level = 1, ) @@ -9,7 +9,7 @@ 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.14.0`). +`v${major}.${minor}.${patch}` (e.g. `v1.15.0`). #### Documentation Updates @@ -17,12 +17,12 @@ 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.14.0 +#### Release 1.15.0 -[Release 1.14.0](https://github.com/google/googletest/releases/tag/v1.14.0) is +[Release 1.15.0](https://github.com/google/googletest/releases/tag/v1.15.0) is now available. -The 1.14.x branch requires at least C++14. +The 1.15.x branch requires at least C++14. #### Continuous Integration diff --git a/googletest/README.md b/googletest/README.md index 44fd69b..a7d9aa3 100644 --- a/googletest/README.md +++ b/googletest/README.md @@ -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.14.0 +git clone https://github.com/google/googletest.git -b v1.15.0 cd googletest # Main directory of the cloned repository. mkdir build # Create a directory to hold the build output. cd build |