From 08b42705abcc0892d723046c47288db74df59ac2 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 31 Oct 2022 10:26:50 -0700 Subject: [PATCH] start the 0.10.x branch --- CMakeLists.txt | 2 +- build.zig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 943aae331a..f37d423e78 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 "") diff --git a/build.zig b/build.zig index e5e80b42a3..97412cbc7c 100644 --- 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 = 10, .patch = 1 }; const stack_size = 32 * 1024 * 1024; pub fn build(b: *Builder) !void {