Skip to content

Commit 05937b3

Browse files
committed
start the 0.15.0 release cycle
1 parent 5ad91a6 commit 05937b3

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
@@ -38,7 +38,7 @@ project(zig
3838
)
3939

4040
set(ZIG_VERSION_MAJOR 0)
41-
set(ZIG_VERSION_MINOR 14)
41+
set(ZIG_VERSION_MINOR 15)
4242
set(ZIG_VERSION_PATCH 0)
4343
set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.")
4444

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const assert = std.debug.assert;
1111
const DevEnv = @import("src/dev.zig").Env;
1212
const ValueInterpretMode = enum { direct, by_name };
1313

14-
const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 14, .patch = 0 };
14+
const zig_version: std.SemanticVersion = .{ .major = 0, .minor = 15, .patch = 0 };
1515
const stack_size = 46 * 1024 * 1024;
1616

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

0 commit comments

Comments
 (0)