From 015d1a091af6937488242b70121858bce8fd40e9 Mon Sep 17 00:00:00 2001 From: Dominic Hamon Date: Thu, 6 Jul 2023 09:50:35 +0100 Subject: [PATCH] bump version to 1.8.2 ready for release --- CMakeLists.txt | 2 +- MODULE.bazel | 2 +- bindings/python/google_benchmark/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c1b0374123..ae89e06d9f 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.1 LANGUAGES CXX) +project (benchmark VERSION 1.8.2 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 505510de2d..46212429a6 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,4 +1,4 @@ -module(name = "com_github_google_benchmark", version="1.8.1") +module(name = "com_github_google_benchmark", version="1.8.2") 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 ebab5c28ab..2a5e65dba4 100644 --- a/bindings/python/google_benchmark/__init__.py +++ b/bindings/python/google_benchmark/__init__.py @@ -69,7 +69,7 @@ def my_benchmark(state): "State", ] -__version__ = "1.8.1" +__version__ = "1.8.2" class __OptionMaker: