Skip to content

Commit c2b23e9

Browse files
Update release number
1 parent 0755757 commit c2b23e9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
cmake_policy(SET CMP0057 NEW)
88
cmake_policy(SET CMP0048 NEW)
99

10-
project(Chai LANGUAGES CXX VERSION 2.2.1)
10+
project(Chai LANGUAGES CXX VERSION 2.2.2)
1111

1212
set(ENABLE_CUDA Off CACHE BOOL "Enable CUDA")
1313
set(ENABLE_HIP Off CACHE BOOL "Enable HIP")

docs/sphinx/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
# The short X.Y version.
6464
version = u'2.2'
6565
# The full version, including alpha/beta/rc tags.
66-
release = u'2.2.1'
66+
release = u'2.2.2'
6767

6868
# The language for content autogenerated by Sphinx. Refer to documentation
6969
# for a list of supported languages.

docs/sphinx/conf.py.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ author = u''
6262
# The short X.Y version.
6363
version = u'2.2'
6464
# The full version, including alpha/beta/rc tags.
65-
release = u'2.2.1'
65+
release = u'2.2.2'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

scripts/make_release_tarball.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
##############################################################################
88

99
TAR_CMD=gtar
10-
VERSION=2.2.1
10+
VERSION=2.2.2
1111

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

1414
echo "Running git archive submodules..."
1515

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

0 commit comments

Comments
 (0)