From 409b194d6d95c722b50cb85a7a6bb4a457026d71 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 19 Aug 2025 16:21:17 -0700 Subject: [PATCH] start the 0.15.2 release cycle --- CMakeLists.txt | 2 +- build.zig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef371fcdd3..0ab8e1cddd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,7 @@ project(zig set(ZIG_VERSION_MAJOR 0) set(ZIG_VERSION_MINOR 15) -set(ZIG_VERSION_PATCH 1) +set(ZIG_VERSION_PATCH 2) 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 37523e66a3..9e672a4ca7 100644 --- a/build.zig +++ b/build.zig @@ -10,7 +10,7 @@ const assert = std.debug.assert; const DevEnv = @import("src/dev.zig").Env; const ValueInterpretMode = enum { direct, by_name }; -const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 15, .patch = 1 }; +const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 15, .patch = 2 }; const stack_size = 46 * 1024 * 1024; pub fn build(b: *std.Build) !void {