authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-03-05 12:41:31-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-03-05 12:42:08-08:00
log61a95ab6629f9eb6e9aeff4f409c68539e117f18
tree2cef57c57f43d0736b03dd450e5e4037186a1a34
parent5ad91a646a753cc3eecd8751e61cf458dadd9ac4

start the 0.14.1 release cycle


3 files changed, 3 insertions(+), 4 deletions(-)

.github/workflows/ci.yaml+1-2
...@@ -3,8 +3,7 @@ on:...@@ -3,8 +3,7 @@ on:
3 pull_request:3 pull_request:
4 push:4 push:
5 branches:5 branches:
6 - master6 - 0.14.x
7 - llvm19
8concurrency:7concurrency:
9 # Cancels pending runs when a PR gets updated.8 # Cancels pending runs when a PR gets updated.
10 group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}9 group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
CMakeLists.txt+1-1
...@@ -39,7 +39,7 @@ project(zig...@@ -39,7 +39,7 @@ project(zig
3939
40set(ZIG_VERSION_MAJOR 0)40set(ZIG_VERSION_MAJOR 0)
41set(ZIG_VERSION_MINOR 14)41set(ZIG_VERSION_MINOR 14)
42set(ZIG_VERSION_PATCH 0)42set(ZIG_VERSION_PATCH 1)
43set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.")43set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.")
4444
45if("${ZIG_VERSION}" STREQUAL "")45if("${ZIG_VERSION}" STREQUAL "")
build.zig+1-1
...@@ -11,7 +11,7 @@ const assert = std.debug.assert;...@@ -11,7 +11,7 @@ const assert = std.debug.assert;
11const DevEnv = @import("src/dev.zig").Env;11const DevEnv = @import("src/dev.zig").Env;
12const ValueInterpretMode = enum { direct, by_name };12const ValueInterpretMode = enum { direct, by_name };
1313
14const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 14, .patch = 0 };14const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 14, .patch = 1 };
15const stack_size = 46 * 1024 * 1024;15const stack_size = 46 * 1024 * 1024;
1616
17pub fn build(b: *std.Build) !void {17pub fn build(b: *std.Build) !void {