From b2e6d2aa1f205c0ed5f4e266252c633268de2805 Mon Sep 17 00:00:00 2001 From: Steven Johnson Date: Mon, 24 Jun 2024 17:19:26 -0700 Subject: [PATCH] Bump Halide version to 17.0.2 on release/17.x (#8315) * Bump Halide version to 17.0.2 on release/17.x * Update setup.py * Update HalideRuntime.h --- CMakeLists.txt | 2 +- setup.py | 2 +- src/runtime/HalideRuntime.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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.