start the 0.12.0 release cycle

This commit is contained in:
Andrew Kelley 2023-08-03 11:22:40 -07:00
parent 67709b6382
commit a327d8b995
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ project(zig C CXX)
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
set(ZIG_VERSION_MAJOR 0) set(ZIG_VERSION_MAJOR 0)
set(ZIG_VERSION_MINOR 11) set(ZIG_VERSION_MINOR 12)
set(ZIG_VERSION_PATCH 0) set(ZIG_VERSION_PATCH 0)
set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.") set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.")

View File

@ -9,7 +9,7 @@ const fs = std.fs;
const InstallDirectoryOptions = std.Build.InstallDirectoryOptions; const InstallDirectoryOptions = std.Build.InstallDirectoryOptions;
const assert = std.debug.assert; const assert = std.debug.assert;
const zig_version = std.SemanticVersion{ .major = 0, .minor = 11, .patch = 0 }; const zig_version = std.SemanticVersion{ .major = 0, .minor = 12, .patch = 0 };
const stack_size = 32 * 1024 * 1024; const stack_size = 32 * 1024 * 1024;
pub fn build(b: *std.Build) !void { pub fn build(b: *std.Build) !void {