From 052f4212b0da591edefca5bc86e911998b5429ff Mon Sep 17 00:00:00 2001 From: David Beckingsale Date: Thu, 19 Aug 2021 13:51:24 -0700 Subject: [PATCH] Bump release number --- CMakeLists.txt | 2 +- README.md | 2 +- docs/sphinx/conf.py | 4 ++-- docs/sphinx/conf.py.in | 4 ++-- scripts/make_release_tarball.sh | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 681637a6..9ac5b454 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ cmake_policy(SET CMP0057 NEW) cmake_policy(SET CMP0048 NEW) cmake_policy(SET CMP0025 NEW) -project(Chai LANGUAGES CXX VERSION 2.3.0) +project(Chai LANGUAGES CXX VERSION 2.4.0) set(ENABLE_CUDA Off CACHE BOOL "Enable CUDA") set(ENABLE_HIP Off CACHE BOOL "Enable HIP") diff --git a/README.md b/README.md index 874907a7..e69aee09 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# CHAI v2.3 +# CHAI v2.4 [![Azure Build Status](https://dev.azure.com/davidbeckingsale/CHAI/_apis/build/status/LLNL.CHAI?branchName=develop)](https://dev.azure.com/davidbeckingsale/CHAI/_build/latest?definitionId=2&branchName=develop) [![Build Status](https://travis-ci.org/LLNL/CHAI.svg?branch=develop)](https://travis-ci.org/LLNL/CHAI) diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index 41c91830..8c3bb894 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = u'2.3' +version = u'2.4' # The full version, including alpha/beta/rc tags. -release = u'2.3.0' +release = u'2.4.0' # 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 a1c90b20..9b08a122 100644 --- a/docs/sphinx/conf.py.in +++ b/docs/sphinx/conf.py.in @@ -60,9 +60,9 @@ author = u'' # built documents. # # The short X.Y version. -version = u'2.3' +version = u'2.4' # The full version, including alpha/beta/rc tags. -release = u'2.3.0' +release = u'2.4.0' # 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 888c11a0..cce285fe 100755 --- a/scripts/make_release_tarball.sh +++ b/scripts/make_release_tarball.sh @@ -7,7 +7,7 @@ ############################################################################## TAR_CMD=gtar -VERSION=2.3.0 +VERSION=2.4.0 git archive --prefix=chai-${VERSION}/ -o chai-${VERSION}.tar HEAD 2> /dev/null