Skip to content

Commit

Permalink
Update release number
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbeckingsale committed Oct 12, 2020
1 parent 0755757 commit c2b23e9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
cmake_policy(SET CMP0057 NEW)
cmake_policy(SET CMP0048 NEW)

project(Chai LANGUAGES CXX VERSION 2.2.1)
project(Chai LANGUAGES CXX VERSION 2.2.2)

set(ENABLE_CUDA Off CACHE BOOL "Enable CUDA")
set(ENABLE_HIP Off CACHE BOOL "Enable HIP")
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.1'
release = u'2.2.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -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.1'
release = u'2.2.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions scripts/make_release_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
##############################################################################

TAR_CMD=gtar
VERSION=2.2.1
VERSION=2.2.2

git archive --prefix=chai-${VERSION}/ -o chai-${VERSION}.tar HEAD 2> /dev/null

echo "Running git archive submodules..."

p=`pwd` && (echo .; git submodule foreach) | while read entering path; do
p=`pwd` && (echo .; git submodule foreach --recursive) | while read entering path; do
temp="${path%\'}";
temp="${temp#\'}";
path=$temp;
Expand Down

0 comments on commit c2b23e9

Please sign in to comment.