diff --git a/CMakeLists.txt b/CMakeLists.txt index f80aaf97af9c..5299ee172b41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.22...3.23) project(Halide - VERSION 17.0.1 + VERSION 17.0.2 DESCRIPTION "Halide compiler and libraries" HOMEPAGE_URL "https://halide-lang.org") diff --git a/setup.py b/setup.py index fa88f382a122..a7b9116d7144 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="halide", - version='16.0.0', + version='17.0.2', author="The Halide team", author_email="halide-dev@lists.csail.mit.edu", description="Halide is a programming language designed to make it easier " diff --git a/src/runtime/HalideRuntime.h b/src/runtime/HalideRuntime.h index 7030f77e6560..a8fed6bcdd10 100644 --- a/src/runtime/HalideRuntime.h +++ b/src/runtime/HalideRuntime.h @@ -25,7 +25,7 @@ // downstream build systems (eg Blaze/Bazel) properly in sync with the source. #define HALIDE_VERSION_MAJOR 17 #define HALIDE_VERSION_MINOR 0 -#define HALIDE_VERSION_PATCH 1 +#define HALIDE_VERSION_PATCH 2 #ifdef __cplusplus // Forward declare type to allow naming typed handles.