From aab5cccc78311b01516ed094bf0e9b4bbb6b4577 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 6 Jun 2024 12:05:37 -0700 Subject: [PATCH] start the 0.14.0 release cycle --- CMakeLists.txt | 2 +- build.zig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22051f1902..9e477f8058 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,7 @@ project(zig ) set(ZIG_VERSION_MAJOR 0) -set(ZIG_VERSION_MINOR 13) +set(ZIG_VERSION_MINOR 14) set(ZIG_VERSION_PATCH 0) set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.") diff --git a/build.zig b/build.zig index a9e9884717..ab7288a8ae 100644 --- a/build.zig +++ b/build.zig @@ -9,7 +9,7 @@ const fs = std.fs; const InstallDirectoryOptions = std.Build.InstallDirectoryOptions; const assert = std.debug.assert; -const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 13, .patch = 0 }; +const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 14, .patch = 0 }; const stack_size = 32 * 1024 * 1024; pub fn build(b: *std.Build) !void {