From 9eb4b14eb8d371b26312e9555cd0ad3e75770692 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 6 Jun 2024 16:20:07 -0700 Subject: [PATCH] start the 0.12.2 release cycle --- CMakeLists.txt | 2 +- build.zig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a409096e3..db797933f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) set(ZIG_VERSION_MAJOR 0) set(ZIG_VERSION_MINOR 12) -set(ZIG_VERSION_PATCH 1) +set(ZIG_VERSION_PATCH 2) set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.") if("${ZIG_VERSION}" STREQUAL "") diff --git a/build.zig b/build.zig index b5db6e7a5b..99219ed44e 100644 --- a/build.zig +++ b/build.zig @@ -9,7 +9,7 @@ const fs = std.fs; const InstallDirectoryOptions = std.Build.InstallDirectoryOptions; const assert = std.debug.assert; -const zig_version = std.SemanticVersion{ .major = 0, .minor = 12, .patch = 1 }; +const zig_version = std.SemanticVersion{ .major = 0, .minor = 12, .patch = 2 }; const stack_size = 32 * 1024 * 1024; pub fn build(b: *std.Build) !void {