From 3b046d76b7161acbc8ede000c3b973118a5e2cbb Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 29 Aug 2023 13:32:30 -0700 Subject: [PATCH] start the 0.11.1 release cycle --- CMakeLists.txt | 2 +- build.zig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 92be8fbfe8599ff38b2a505a85280e38e39b4ff2..f1289e20ba9d399a329fd1fc52eecffe5ae96975 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) set(ZIG_VERSION_MAJOR 0) set(ZIG_VERSION_MINOR 11) -set(ZIG_VERSION_PATCH 0) +set(ZIG_VERSION_PATCH 1) 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 cb62d64da2f768d1b02b5154c6137ec8f3ece9b6..25c02d0de54010b4c4e41d17379d0179c7899952 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 = 11, .patch = 0 }; +const zig_version = std.SemanticVersion{ .major = 0, .minor = 11, .patch = 1 }; const stack_size = 32 * 1024 * 1024; pub fn build(b: *std.Build) !void { -- 2.54.0