From 30adbc62ac4c4c8f776f7da8ac4b83aa3a0ecfd7 Mon Sep 17 00:00:00 2001 From: Alan Dayton Date: Wed, 31 Jul 2024 10:41:52 -0700 Subject: [PATCH] Update version number and release notes --- CMakeLists.txt | 2 +- README.md | 2 +- RELEASE_NOTES.md | 3 ++- docs/sphinx/conf.py | 2 +- scripts/make_release_tarball.sh | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 706d2e12..b92d11a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ cmake_minimum_required(VERSION 3.23) project(CARE LANGUAGES C CXX - VERSION 0.13.2) + VERSION 0.13.3) include(${PROJECT_SOURCE_DIR}/cmake/Setup.cmake) diff --git a/README.md b/README.md index 31080231..37644989 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [comment]: # (SPDX-License-Identifier: BSD-3-Clause) [comment]: # (#################################################################) -# CARE v0.13.2 +# CARE v0.13.3 CARE: CHAI and RAJA Extensions =============================== diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 458fd929..1b2382ce 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -12,10 +12,11 @@ in this file. The format of this file is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). -## [Version ?] - Release date ? +## [Version 0.13.3] - Release date 2024-07-31 ### Fixed - Replaced loop\_work alias with seq\_work (loop\_work was removed in RAJA v2024.02.2) +- Fixed CHUNKED loop macro implementations ## [Version 0.13.2] - Release date 2024-07-29 diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index 63e5eb79..092950af 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -57,7 +57,7 @@ # The short X.Y version. version = '0.13' # The full version, including alpha/beta/rc tags. -release = '0.13.2' +release = '0.13.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/scripts/make_release_tarball.sh b/scripts/make_release_tarball.sh index c1fc4c4e..4ef78739 100755 --- a/scripts/make_release_tarball.sh +++ b/scripts/make_release_tarball.sh @@ -8,7 +8,7 @@ ############################################################################## TAR_CMD=gtar -VERSION=0.13.2 +VERSION=0.13.3 git archive --prefix=care-${VERSION}/ -o care-${VERSION}.tar HEAD 2> /dev/null