bump version to 1.8.3
bazel / bazel.macos-latest.no_bzlmod (push) Has been cancelled
bazel / bazel.ubuntu-latest.no_bzlmod (push) Has been cancelled
bazel / bazel.windows-latest.no_bzlmod (push) Has been cancelled
bazel / bazel.macos-latest.bzlmod (push) Has been cancelled
bazel / bazel.ubuntu-latest.bzlmod (push) Has been cancelled
bazel / bazel.windows-latest.bzlmod (push) Has been cancelled
clang-format-lint / build (push) Has been cancelled
clang-tidy / run-clang-tidy (push) Has been cancelled
sanitizer / asan.Debug (push) Has been cancelled
sanitizer / msan.Debug (push) Has been cancelled
sanitizer / tsan.Debug (push) Has been cancelled
sanitizer / ubsan.Debug (push) Has been cancelled
sanitizer / asan.RelWithDebInfo (push) Has been cancelled
sanitizer / msan.RelWithDebInfo (push) Has been cancelled
sanitizer / tsan.RelWithDebInfo (push) Has been cancelled
sanitizer / ubsan.RelWithDebInfo (push) Has been cancelled

This commit is contained in:
Dominic Hamon
2023-08-31 13:16:50 +01:00
parent db3e000c1e
commit 344117638c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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)
+1 -1
View File
@@ -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")
+1 -1
View File
@@ -69,7 +69,7 @@ __all__ = [
"State",
]
__version__ = "1.8.2"
__version__ = "1.8.3"
class __OptionMaker: