From 8a691271aef95ad9092d491233b79a88996abf27 Mon Sep 17 00:00:00 2001 From: Cameron Stanavige Date: Thu, 27 Jun 2024 12:00:17 -0700 Subject: [PATCH] Incremental release v1.5.0 (#74) Update version number in CMakeLists.txt and src/kvtree.h Add id_tokens to gitlab ci to simply get it running again --- .gitlab-ci.yml | 4 +++- CMakeLists.txt | 2 +- src/kvtree.h | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3183e23..1d1ae48 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 @@ -8,7 +11,6 @@ slurm-job: - cmake -DMPI=ON -DVELOC_RESOURCE_MANAGER=SLURM - make VERBOSE=1 - make check - lsf-job: tags: - lassen diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f1b0e0..2111192 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.14) -PROJECT(KVTREE VERSION 1.4.0) +PROJECT(KVTREE VERSION 1.5.0) # Mac rpath Policy IF(POLICY CMP0042) diff --git a/src/kvtree.h b/src/kvtree.h index ecf06e1..a77b95b 100644 --- a/src/kvtree.h +++ b/src/kvtree.h @@ -62,7 +62,7 @@ extern "C" { * where each element contains a key (char string) * and a pointer to another hash. */ -#define KVTREE_VERSION "1.4.0" +#define KVTREE_VERSION "1.5.0" #define KVTREE_SUCCESS (0) #define KVTREE_MAX_FILENAME (1024)