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