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