Skip to content

Commit

Permalink
Incremental release v0.4.0 (#57)
Browse files Browse the repository at this point in the history
Update version number in CMakeLists.txt and src/redset.h

Add id_tokens to gitlab ci to simply get it running again
  • Loading branch information
CamStan authored Jun 27, 2024
1 parent f792556 commit bdf77a1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
include:
- project: 'lc-templates/id_tokens'
file: 'id_tokens.yml'
slurm-job:
tags:
- quartz
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/redset.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit bdf77a1

Please sign in to comment.