mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
start the 0.12.2 release cycle
This commit is contained in:
parent
b0ba8b728f
commit
9eb4b14eb8
2 changed files with 2 additions and 2 deletions
|
|
@ -37,7 +37,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
|
||||||
|
|
||||||
set(ZIG_VERSION_MAJOR 0)
|
set(ZIG_VERSION_MAJOR 0)
|
||||||
set(ZIG_VERSION_MINOR 12)
|
set(ZIG_VERSION_MINOR 12)
|
||||||
set(ZIG_VERSION_PATCH 1)
|
set(ZIG_VERSION_PATCH 2)
|
||||||
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 "")
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ const fs = std.fs;
|
||||||
const InstallDirectoryOptions = std.Build.InstallDirectoryOptions;
|
const InstallDirectoryOptions = std.Build.InstallDirectoryOptions;
|
||||||
const assert = std.debug.assert;
|
const assert = std.debug.assert;
|
||||||
|
|
||||||
const zig_version = std.SemanticVersion{ .major = 0, .minor = 12, .patch = 1 };
|
const zig_version = std.SemanticVersion{ .major = 0, .minor = 12, .patch = 2 };
|
||||||
const stack_size = 32 * 1024 * 1024;
|
const stack_size = 32 * 1024 * 1024;
|
||||||
|
|
||||||
pub fn build(b: *std.Build) !void {
|
pub fn build(b: *std.Build) !void {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue