From bdf77a1b171e63c1a371f0a79368e80333c9c8c8 Mon Sep 17 00:00:00 2001 From: Cameron Stanavige Date: Thu, 27 Jun 2024 12:03:41 -0700 Subject: [PATCH] Incremental release v0.4.0 (#57) Update version number in CMakeLists.txt and src/redset.h Add id_tokens to gitlab ci to simply get it running again --- .gitlab-ci.yml | 3 +++ CMakeLists.txt | 4 ++-- src/redset.h | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e47bd28..6eb2c7d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,6 @@ +include: + - project: 'lc-templates/id_tokens' + file: 'id_tokens.yml' slurm-job: tags: - quartz diff --git a/CMakeLists.txt b/CMakeLists.txt index d3baa12..86f9023 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,7 +42,7 @@ IF(ENABLE_CUDA) # we define the project languages conditionally since listing CUDA # causes the github actions build to fail since nvcc is not available # and adding nvcc is complicated - PROJECT(REDSET VERSION 0.3.0 LANGUAGES C CUDA) + PROJECT(REDSET VERSION 0.4.0 LANGUAGES C CUDA) # if nvcc can be added, then one can move the project line # back to the top, always list CUDA, and selectively enable it @@ -51,7 +51,7 @@ IF(ENABLE_CUDA) SET(HAVE_CUDA TRUE) ELSE(ENABLE_CUDA) - PROJECT(REDSET VERSION 0.3.0 LANGUAGES C) + PROJECT(REDSET VERSION 0.4.0 LANGUAGES C) ENDIF(ENABLE_CUDA) # Find Packages & Files diff --git a/src/redset.h b/src/redset.h index f97bf2a..79dc276 100644 --- a/src/redset.h +++ b/src/redset.h @@ -23,7 +23,7 @@ extern "C" { #define REDSET_SUCCESS (0) -#define REDSET_VERSION "0.3.0" +#define REDSET_VERSION "0.4.0" #define REDSET_COPY_NULL (0) #define REDSET_COPY_SINGLE (1)