start the 0.16.1 release cycle

This commit is contained in:
Andrew Kelley
2026-04-13 11:20:38 -07:00
parent 24fdd5b7a4
commit 019395bd8b
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -5,6 +5,7 @@ on:
push:
branches:
- master
- 0.16.x
workflow_dispatch:
# This cancels older workflow runs on pull requests while ensuring that there
+1 -1
View File
@@ -39,7 +39,7 @@ project(zig
set(ZIG_VERSION_MAJOR 0)
set(ZIG_VERSION_MINOR 16)
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 "")
+1 -1
View File
@@ -10,7 +10,7 @@ const Io = std.Io;
const tests = @import("test/tests.zig");
const DevEnv = @import("src/dev.zig").Env;
const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 16, .patch = 0 };
const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 16, .patch = 1 };
const stack_size = 46 * 1024 * 1024;
const IoMode = enum { threaded, evented };