mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
start the 0.14.1 release cycle
This commit is contained in:
parent
5ad91a646a
commit
61a95ab662
3
.github/workflows/ci.yaml
vendored
3
.github/workflows/ci.yaml
vendored
@ -3,8 +3,7 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- 0.14.x
|
||||||
- llvm19
|
|
||||||
concurrency:
|
concurrency:
|
||||||
# Cancels pending runs when a PR gets updated.
|
# Cancels pending runs when a PR gets updated.
|
||||||
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
|
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
|
||||||
|
|||||||
@ -39,7 +39,7 @@ project(zig
|
|||||||
|
|
||||||
set(ZIG_VERSION_MAJOR 0)
|
set(ZIG_VERSION_MAJOR 0)
|
||||||
set(ZIG_VERSION_MINOR 14)
|
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.")
|
set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.")
|
||||||
|
|
||||||
if("${ZIG_VERSION}" STREQUAL "")
|
if("${ZIG_VERSION}" STREQUAL "")
|
||||||
|
|||||||
@ -11,7 +11,7 @@ const assert = std.debug.assert;
|
|||||||
const DevEnv = @import("src/dev.zig").Env;
|
const DevEnv = @import("src/dev.zig").Env;
|
||||||
const ValueInterpretMode = enum { direct, by_name };
|
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;
|
const stack_size = 46 * 1024 * 1024;
|
||||||
|
|
||||||
pub fn build(b: *std.Build) !void {
|
pub fn build(b: *std.Build) !void {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user