From 019395bd8b4f4d15a92bc75fbdcd5868f3770635 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 13 Apr 2026 11:20:38 -0700 Subject: [PATCH] start the 0.16.1 release cycle --- .forgejo/workflows/ci.yaml | 1 + CMakeLists.txt | 2 +- build.zig | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 264d511042..5fd6fee567 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -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 diff --git a/CMakeLists.txt b/CMakeLists.txt index a7227de55f..0a6b1ad699 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 "") diff --git a/build.zig b/build.zig index 83aacca340..d1222f82c2 100644 --- a/build.zig +++ b/build.zig @@ -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 };