From 481ce7361e075138e06bffff8c68ce8bf8c8eac3 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 13 Dec 2020 12:53:31 -0700 Subject: [PATCH] bump version to 0.7.0 => 0.7.1 The official tag is in the 0.7.x branch. --- CMakeLists.txt | 2 +- build.zig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 72035496fd..ea61fd95c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) set(ZIG_VERSION_MAJOR 0) set(ZIG_VERSION_MINOR 7) -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 3ea4424d1b..ee8fefed19 100644 --- a/build.zig +++ b/build.zig @@ -11,7 +11,7 @@ const fs = std.fs; const InstallDirectoryOptions = std.build.InstallDirectoryOptions; const assert = std.debug.assert; -const zig_version = std.builtin.Version{ .major = 0, .minor = 7, .patch = 0 }; +const zig_version = std.builtin.Version{ .major = 0, .minor = 7, .patch = 1 }; pub fn build(b: *Builder) !void { b.setPreferredReleaseMode(.ReleaseFast);