start the 0.10.x branch

This commit is contained in:
Andrew Kelley 2022-10-31 10:26:50 -07:00
parent 0c1701768d
commit 08b42705ab
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
set(ZIG_VERSION_MAJOR 0)
set(ZIG_VERSION_MINOR 10)
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 "")

View File

@ -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 = 10, .patch = 1 };
const stack_size = 32 * 1024 * 1024;
pub fn build(b: *Builder) !void {