Skip to content

Commit 783cb98

Browse files
committed
Release 0.7.1
1 parent cf0e453 commit 783cb98

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
@@ -26,7 +26,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
2626

2727
set(ZIG_VERSION_MAJOR 0)
2828
set(ZIG_VERSION_MINOR 7)
29-
set(ZIG_VERSION_PATCH 0)
29+
set(ZIG_VERSION_PATCH 1)
3030
set(ZIG_VERSION "" CACHE STRING "Override Zig version string. Default is to find out with git.")
3131

3232
if("${ZIG_VERSION}" STREQUAL "")

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const fs = std.fs;
1111
const InstallDirectoryOptions = std.build.InstallDirectoryOptions;
1212
const assert = std.debug.assert;
1313

14-
const zig_version = std.builtin.Version{ .major = 0, .minor = 7, .patch = 0 };
14+
const zig_version = std.builtin.Version{ .major = 0, .minor = 7, .patch = 1 };
1515

1616
pub fn build(b: *Builder) !void {
1717
b.setPreferredReleaseMode(.ReleaseFast);

0 commit comments

Comments
 (0)