Skip to content

Commit a327d8b

Browse files
committed
start the 0.12.0 release cycle
1 parent 67709b6 commit a327d8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ project(zig C CXX)
3535
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
3636

3737
set(ZIG_VERSION_MAJOR 0)
38-
set(ZIG_VERSION_MINOR 11)
38+
set(ZIG_VERSION_MINOR 12)
3939
set(ZIG_VERSION_PATCH 0)
4040
set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.")
4141

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const fs = std.fs;
99
const InstallDirectoryOptions = std.Build.InstallDirectoryOptions;
1010
const assert = std.debug.assert;
1111

12-
const zig_version = std.SemanticVersion{ .major = 0, .minor = 11, .patch = 0 };
12+
const zig_version = std.SemanticVersion{ .major = 0, .minor = 12, .patch = 0 };
1313
const stack_size = 32 * 1024 * 1024;
1414

1515
pub fn build(b: *std.Build) !void {

0 commit comments

Comments
 (0)