diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d0cea8c..221ee451 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_policy(SET CMP0057 NEW) cmake_policy(SET CMP0048 NEW) -project(Chai LANGUAGES CXX VERSION 2.2.0) +project(Chai LANGUAGES CXX VERSION 2.2.1) set(ENABLE_CUDA Off CACHE BOOL "Enable CUDA") set(ENABLE_HIP Off CACHE BOOL "Enable HIP") diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index d20167b1..0b672421 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -63,7 +63,7 @@ # The short X.Y version. version = u'2.2' # The full version, including alpha/beta/rc tags. -release = u'2.2.0' +release = u'2.2.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/sphinx/conf.py.in b/docs/sphinx/conf.py.in index f814bce6..c314b21a 100644 --- a/docs/sphinx/conf.py.in +++ b/docs/sphinx/conf.py.in @@ -62,7 +62,7 @@ author = u'' # The short X.Y version. version = u'2.2' # The full version, including alpha/beta/rc tags. -release = u'2.2.0' +release = u'2.2.1' # 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 2b3bcc54..32699465 100755 --- a/scripts/make_release_tarball.sh +++ b/scripts/make_release_tarball.sh @@ -7,7 +7,7 @@ ############################################################################## TAR_CMD=gtar -VERSION=2.2.0 +VERSION=2.2.1 git archive --prefix=chai-${VERSION}/ -o chai-${VERSION}.tar HEAD 2> /dev/null diff --git a/src/chai/CMakeLists.txt b/src/chai/CMakeLists.txt index 4bc58395..4ce3c41f 100644 --- a/src/chai/CMakeLists.txt +++ b/src/chai/CMakeLists.txt @@ -66,6 +66,12 @@ if (ENABLE_RAJA_PLUGIN) set (chai_depends ${chai_depends} RAJA) + + if (ENABLE_CUDA) + set (chai_depends + ${chai_depends} + cuda) + endif () endif () blt_add_library(