start the 0.15.1 release cycle

This commit is contained in:
Andrew Kelley 2025-08-19 16:01:09 -07:00
parent 94cda37d69
commit f54f061fb3
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ on:
push: push:
branches: branches:
- master - master
- 0.15.x
concurrency: concurrency:
# Cancels pending runs when a PR gets updated. # Cancels pending runs when a PR gets updated.
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }} group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}

View File

@ -39,7 +39,7 @@ project(zig
set(ZIG_VERSION_MAJOR 0) set(ZIG_VERSION_MAJOR 0)
set(ZIG_VERSION_MINOR 15) set(ZIG_VERSION_MINOR 15)
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.") set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.")
if("${ZIG_VERSION}" STREQUAL "") if("${ZIG_VERSION}" STREQUAL "")

View File

@ -10,7 +10,7 @@ const assert = std.debug.assert;
const DevEnv = @import("src/dev.zig").Env; const DevEnv = @import("src/dev.zig").Env;
const ValueInterpretMode = enum { direct, by_name }; const ValueInterpretMode = enum { direct, by_name };
const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 15, .patch = 0 }; const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 15, .patch = 1 };
const stack_size = 46 * 1024 * 1024; const stack_size = 46 * 1024 * 1024;
pub fn build(b: *std.Build) !void { pub fn build(b: *std.Build) !void {