diff options
author | Dominic Hamon <dominic+github@google.com> | 2023-05-05 11:25:54 +0100 |
---|---|---|
committer | Dominic Hamon <dominic+github@google.com> | 2023-05-05 11:25:54 +0100 |
commit | 2dd015dfef425c866d9a43f2c67d8b52d709acb6 (patch) | |
tree | d34d964fc727735320303254ea6fd1c0404d73cf | |
parent | fba5dd147d34b793e9ae2554f34f36a0bf507c6e (diff) | |
download | google-benchmark-1.8.0.tar.gz google-benchmark-1.8.0.zip |
update version to v1.8.0v1.8.0
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | bindings/python/google_benchmark/__init__.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f884fae..b01cf74 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Require CMake 3.10. If available, use the policies up to CMake 3.22. cmake_minimum_required (VERSION 3.10...3.22) -project (benchmark VERSION 1.7.1 LANGUAGES CXX) +project (benchmark VERSION 1.8.0 LANGUAGES CXX) option(BENCHMARK_ENABLE_TESTING "Enable testing of the benchmark library." ON) option(BENCHMARK_ENABLE_EXCEPTIONS "Enable the use of exceptions in the benchmark library." ON) diff --git a/bindings/python/google_benchmark/__init__.py b/bindings/python/google_benchmark/__init__.py index e6ef8e7..a118dad 100644 --- a/bindings/python/google_benchmark/__init__.py +++ b/bindings/python/google_benchmark/__init__.py @@ -69,7 +69,7 @@ __all__ = [ "State", ] -__version__ = "1.7.1" +__version__ = "1.8.0" class __OptionMaker: |