From 61a95ab6629f9eb6e9aeff4f409c68539e117f18 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 5 Mar 2025 12:41:31 -0800 Subject: [PATCH] start the 0.14.1 release cycle --- .github/workflows/ci.yaml | 3 +-- CMakeLists.txt | 2 +- build.zig | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4700a183e6..f4e244ecf1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,8 +3,7 @@ on: pull_request: push: branches: - - master - - llvm19 + - 0.14.x concurrency: # Cancels pending runs when a PR gets updated. group: ${{ github.head_ref || github.run_id }}-${{ github.actor }} diff --git a/CMakeLists.txt b/CMakeLists.txt index 700b724b00..569e8f4c45 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,7 @@ project(zig set(ZIG_VERSION_MAJOR 0) set(ZIG_VERSION_MINOR 14) -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 2d196041b3..59dbaa703f 100644 --- a/build.zig +++ b/build.zig @@ -11,7 +11,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 = 14, .patch = 0 }; +const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 14, .patch = 1 }; const stack_size = 46 * 1024 * 1024; pub fn build(b: *std.Build) !void {