Skip to content

Commit ddcac43

Browse files
authored
Merge pull request #50 from LLNL/task/v1.2.7-rc
Release candidate v1.2.7
2 parents a8d7997 + 80e3560 commit ddcac43

File tree

4 files changed

+34
-2
lines changed

4 files changed

+34
-2
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
10/31/2023 v1.2.7: Update RAJA (v2023.06.1), CHAI, Umpire (v2023.06.0), and BLT (v0.5.3). Updated use of RAJA GPU threading API. Added host-configs for new platforms/compilers, and scripts to aid release process.
2+
13
05/26/2022 v1.2.6: HIP fixes.
24

35
04/26/2022 v1.2.5: Update RAJA, CHAI (v2022.03.0), Umpire (v2022.03.1), and BLT (v0.5.1). Added HIP support.

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
# SPDX-License-Identifier: (BSD-3-Clause)
66
#
77

8-
cmake_minimum_required(VERSION 3.20)
8+
if (ENABLE_HIP)
9+
cmake_minimum_required(VERSION 3.23)
10+
else()
11+
cmake_minimum_required(VERSION 3.20)
12+
endif()
913

1014
cmake_policy(SET CMP0057 NEW)
1115

RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*******************************************************************************
22

3-
Kripke: ................................, version 1.2.6
3+
Kripke: ................................, version 1.2.7
44

55
Copyright (c) 2014-23, Lawrence Livermore National Security, LLC.
66
Produced at the Lawrence Livermore National Laboratory.

scripts/make_release_tarball.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/usr/bin/env bash
2+
3+
###############################################################################
4+
# Copyright (c) 2014-23, Lawrence Livermore National Security, LLC
5+
# and Kripke project contributors. See the Kripke/COPYRIGHT file for details.
6+
#
7+
# SPDX-License-Identifier: (BSD-3-Clause)
8+
###############################################################################
9+
10+
TAR_CMD=`which tar`
11+
VERSION=`git describe --tags`
12+
SHORTHASH=`git rev-parse --short HEAD`
13+
14+
git archive --prefix=kripke-${VERSION}-${SHORTHASH}/ -o kripke-${VERSION}-${SHORTHASH}.tar HEAD 2> /dev/null
15+
16+
echo "Running git archive submodules..."
17+
18+
p=`pwd` && (echo .; git submodule foreach --recursive) | while read entering path; do
19+
temp="${path%\'}";
20+
temp="${temp#\'}";
21+
path=$temp;
22+
[ "$path" = "" ] && continue;
23+
(cd $path && git archive --prefix=kripke-${VERSION}-${SHORTHASH}/$path/ HEAD > $p/tmp.tar && ${TAR_CMD} --concatenate --file=$p/kripke-${VERSION}-${SHORTHASH}.tar $p/tmp.tar && rm $p/tmp.tar);
24+
done
25+
26+
gzip kripke-${VERSION}-${SHORTHASH}.tar

0 commit comments

Comments
 (0)