From fe5e182fdb46df64aaca2ffa514a3185ed61374c Mon Sep 17 00:00:00 2001 From: Stephane Rigaud Date: Tue, 14 May 2024 13:33:42 +0200 Subject: [PATCH] bump version 0.10.3 --- CMakeLists.txt | 2 +- pyclesperanto/_version.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 34a1085e..1fbcbb9a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ option(BUILD_SHARED_LIBS OFF) ## CLIc dependency -set(CLIC_REPO_TAG remove-64-bit-type) # branch name for dev +set(CLIC_REPO_TAG 0.10.3) # branch name for dev set(CLIC_REPO_URL https://github.com/clEsperanto/CLIc.git) set(BUILD_OPENCL_BACKEND ON CACHE BOOL "Build with OCL if FOUND" FORCE) set(BUILD_CUDA_BACKEND ON CACHE BOOL "Build with CUDA if FOUND" FORCE) diff --git a/pyclesperanto/_version.py b/pyclesperanto/_version.py index 5d4543bd..13a63a88 100644 --- a/pyclesperanto/_version.py +++ b/pyclesperanto/_version.py @@ -1,10 +1,10 @@ # pyclesperanto version -VERSION_CODE = 0, 10, 2 +VERSION_CODE = 0, 10, 3 VERSION_STATUS = "" VERSION = ".".join(str(x) for x in VERSION_CODE) + VERSION_STATUS # clic version -CLIC_VERSION_CODE = 0, 10, 2 +CLIC_VERSION_CODE = 0, 10, 3 CLIC_VERSION_STATUS = "" CLIC_VERSION = ".".join(str(x) for x in CLIC_VERSION_CODE) + CLIC_VERSION_STATUS diff --git a/pyproject.toml b/pyproject.toml index 964574ce..240fed92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ description = "GPU-accelerated image processing in python using OpenCL" name = "pyclesperanto" readme = "README.md" requires-python = ">=3.7" -version = "0.10.2" +version = "0.10.3" [project.urls] Documentation = "https://clesperanto.github.io/pyclesperanto/"