Skip to content

Commit

Permalink
start the 0.14.1 release cycle
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrk committed Mar 5, 2025
1 parent 5ad91a6 commit 61a95ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 "")
Expand Down
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 61a95ab

Please sign in to comment.