From e268b8e5b9cc6d487703689613b648458dc7ebcb Mon Sep 17 00:00:00 2001 From: Stephane Rigaud Date: Thu, 11 Jul 2024 18:36:20 +0200 Subject: [PATCH] update version --- 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 77249004..360eba89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ option(BUILD_SHARED_LIBS OFF) ## CLIc dependency -set(CLIC_REPO_TAG 0.11.0) # branch name for dev +set(CLIC_REPO_TAG 0.11.1) # 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 86a8e463..8308ad42 100644 --- a/pyclesperanto/_version.py +++ b/pyclesperanto/_version.py @@ -1,10 +1,10 @@ # pyclesperanto version -VERSION_CODE = 0, 11, 0 +VERSION_CODE = 0, 11, 1 VERSION_STATUS = "" VERSION = ".".join(str(x) for x in VERSION_CODE) + VERSION_STATUS # clic version -CLIC_VERSION_CODE = 0, 11, 0 +CLIC_VERSION_CODE = 0, 11, 1 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 bf36f88b..545acf34 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.11.0" +version = "0.11.1" [project.urls] Documentation = "https://clesperanto.github.io/pyclesperanto/"