commit 841235b3fd6dfb34e8a036afaf5b25fa9adf92d7 (tree)
parent 0c1701768d4fefcc4792ebe39b79e31028c53bfa
Author: Andrew Kelley <andrew@ziglang.org>
Date: Mon, 31 Oct 2022 10:25:46 -0700
start the 0.11.0 release cycle
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -41,7 +41,7 @@ project(zig C CXX)
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
set(ZIG_VERSION_MAJOR 0)
-set(ZIG_VERSION_MINOR 10)
+set(ZIG_VERSION_MINOR 11)
set(ZIG_VERSION_PATCH 0)
set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.")
diff --git a/build.zig b/build.zig
@@ -10,7 +10,7 @@ const fs = std.fs;
const InstallDirectoryOptions = std.build.InstallDirectoryOptions;
const assert = std.debug.assert;
-const zig_version = std.builtin.Version{ .major = 0, .minor = 10, .patch = 0 };
+const zig_version = std.builtin.Version{ .major = 0, .minor = 11, .patch = 0 };
const stack_size = 32 * 1024 * 1024;
pub fn build(b: *Builder) !void {