From 25103dabce6eda8ca50291487b649685e5ab8445 Mon Sep 17 00:00:00 2001 From: Stephane Rigaud Date: Fri, 23 Aug 2024 10:41:29 +0200 Subject: [PATCH] up version number --- .github/workflows/clic_release.yml | 17 ----------------- CMakeLists.txt | 2 +- pyclesperanto/_version.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 21 deletions(-) delete mode 100644 .github/workflows/clic_release.yml diff --git a/.github/workflows/clic_release.yml b/.github/workflows/clic_release.yml deleted file mode 100644 index f80adfc3..00000000 --- a/.github/workflows/clic_release.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: CLIC release PR - -on: - repository_dispatch: - types: [new_release] - -jobs: - handle-new-release: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Handle new release - run: | - echo "New release detected from target repository" - # Add your actions here, e.g., create an issue, send a notification, etc. diff --git a/CMakeLists.txt b/CMakeLists.txt index af0cdfbf..e4813b9f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ option(BUILD_SHARED_LIBS OFF) ## CLIc dependency -set(CLIC_REPO_TAG 0.12.0) # branch name for dev +set(CLIC_REPO_TAG 0.12.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 3c5c91a3..f737c5e4 100644 --- a/pyclesperanto/_version.py +++ b/pyclesperanto/_version.py @@ -1,10 +1,10 @@ # pyclesperanto version -VERSION_CODE = 0, 12, 0 +VERSION_CODE = 0, 12, 1 VERSION_STATUS = "" VERSION = ".".join(str(x) for x in VERSION_CODE) + VERSION_STATUS # clic version -CLIC_VERSION_CODE = 0, 12, 0 +CLIC_VERSION_CODE = 0, 12, 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 c3ee4da1..f62c793f 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.8" -version = "0.12.0" +version = "0.12.1" [project.urls]