diff options
author | Dominic Hamon <dominic+github@google.com> | 2023-08-31 13:16:50 +0100 |
---|---|---|
committer | Dominic Hamon <dominic+github@google.com> | 2023-08-31 13:16:50 +0100 |
commit | 344117638c8ff7e239044fd0fa7085839fc03021 (patch) | |
tree | e89016ef2ca4c37f9a8b2d9a079eea61790efca7 | |
parent | db3e000c1e6675f70ae41895ca1e25b274e52554 (diff) | |
download | google-benchmark-1.8.3.tar.gz google-benchmark-1.8.3.zip |
bump version to 1.8.3v1.8.3
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | MODULE.bazel | 2 | ||||
-rw-r--r-- | bindings/python/google_benchmark/__init__.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 68889a0..ffd7dee 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.8.2 LANGUAGES CXX) +project (benchmark VERSION 1.8.3 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/MODULE.bazel b/MODULE.bazel index cf07c3e..37a5f5d 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,4 +1,4 @@ -module(name = "google_benchmark", version="1.8.2") +module(name = "google_benchmark", version="1.8.3") bazel_dep(name = "bazel_skylib", version = "1.4.1") bazel_dep(name = "platforms", version = "0.0.6") diff --git a/bindings/python/google_benchmark/__init__.py b/bindings/python/google_benchmark/__init__.py index 2a5e65d..642d78a 100644 --- a/bindings/python/google_benchmark/__init__.py +++ b/bindings/python/google_benchmark/__init__.py @@ -69,7 +69,7 @@ __all__ = [ "State", ] -__version__ = "1.8.2" +__version__ = "1.8.3" class __OptionMaker: |