]> git-server-git.apps.pok.os.sepia.ceph.com Git - googletest.git/commitdiff
Prepare for v1.15.0 (#4574) v1.15.0 v1.15.0-pre
authorDerek Mauro <761129+derekmauro@users.noreply.github.com>
Mon, 15 Jul 2024 17:46:49 +0000 (13:46 -0400)
committerGitHub <noreply@github.com>
Mon, 15 Jul 2024 17:46:49 +0000 (13:46 -0400)
CMakeLists.txt
MODULE.bazel
README.md
googletest/README.md

index 9e6d6440da903d97a86819b3a6c03ffb28c3a0b1..737b720903cc8eab65399c4d3a07bbcfa42d5430 100644 (file)
@@ -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)
index b179fe93bbc8cad34573658a5a51d3697714712a..416cf389413b8028ced7bf0d47cfc87d780c3004 100644 (file)
@@ -32,7 +32,7 @@
 
 module(
     name = "googletest",
-    version = "head",
+    version = "1.15.0",
     compatibility_level = 1,
 )
 
index 4290146b5341af643e7f0b46e6ccf699ac3949de..f50c670534d52b1b483673ba40a9cb84eec92009 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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
 
index 44fd69b489237ab72b539d42744f4dd2e5a90e19..a7d9aa32589f17b69b8a6b05c9b49a149072cd36 100644 (file)
@@ -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