From 7c0e1cc91398b77d29a2b5760f003a52dd828997 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 19 Apr 2024 14:01:04 -0700 Subject: [PATCH] start the 0.13.0 release cycle --- CMakeLists.txt | 2 +- build.zig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e677ee0947d8cff96cfd25ebac77151e34281982..2fb63a57fd42912513e702beaf3680592f2e6922 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,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 12) +set(ZIG_VERSION_MINOR 13) 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 index 0e43b82f9a5583dea3cfb9eb21c57af466413222..5c169951ce71e2c05590fa4a263ede96d051773c 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 = 12, .patch = 0 }; +const zig_version = std.SemanticVersion{ .major = 0, .minor = 13, .patch = 0 }; const stack_size = 32 * 1024 * 1024; pub fn build(b: *std.Build) !void { -- 2.54.0