Skip to content

Commit b629c80

Browse files
authored
Bump version to 21.0.0 (#8810)
1 parent af2f31b commit b629c80

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
env:
1414
# TODO: detect this from repo somehow: https://github.com/halide/Halide/issues/8406
15-
LLVM_VERSION: 20.1.8
15+
LLVM_VERSION: 21.1.1
1616
FLATBUFFERS_VERSION: 23.5.26
1717
WABT_VERSION: 1.0.36
1818

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if (NOT DEFINED VCPKG_MANIFEST_FEATURES)
1616
endif ()
1717

1818
project(Halide
19-
VERSION 20.0.0
19+
VERSION 21.0.0
2020
DESCRIPTION "Halide compiler and libraries"
2121
HOMEPAGE_URL "https://halide-lang.org")
2222

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ ignore = [
141141
github_url = "https://github.com/halide/Halide/"
142142

143143
[tool.tbump.version]
144-
current = "20.0.0"
144+
current = "21.0.0"
145145
regex = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)'
146146

147147
[tool.tbump.git]

python_bindings/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.28)
2-
project(Halide_Python VERSION 20.0.0)
2+
project(Halide_Python VERSION 21.0.0)
33

44
if (PROJECT_IS_TOP_LEVEL)
55
enable_testing()

src/runtime/HalideRuntime.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// our CMake build, so that we ensure that the in-build metadata (eg soversion)
2424
// matches, but keeping the canonical version here makes it easier to keep
2525
// downstream build systems (eg Blaze/Bazel) properly in sync with the source.
26-
#define HALIDE_VERSION_MAJOR 20
26+
#define HALIDE_VERSION_MAJOR 21
2727
#define HALIDE_VERSION_MINOR 0
2828
#define HALIDE_VERSION_PATCH 0
2929

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "halide",
3-
"version": "20.0.0",
3+
"version": "21.0.0",
44
"description": "Halide is a programming language designed to make it easier to write high-performance image and array processing code on modern machines.",
55
"homepage": "https://github.com/halide/Halide",
66
"license": "MIT",

0 commit comments

Comments
 (0)