Skip to content

Commit

Permalink
change version number (3.5.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Jun 14, 2022
1 parent fc4becb commit 56382ed
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
16 changes: 14 additions & 2 deletions dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
# sphinxcontib_spelling
# git-archive-all
# #####################################

git-archive-all --help > /dev/null 2>&1
if [ $? != 0 ]; then
echo 'ERROR: git-archive-all is not available'
echo 'HINT: python3 -m pip install git-archive-all'
exit 1
fi

#
# Version ID
#
Expand All @@ -22,17 +30,21 @@ vid=`echo ${major}.${minor}.${patch}`
ROOTDIR=`pwd`

# Build docments
cd doc/ja
cd $ROOTDIR/doc/ja
make latexpdf
cp ./build/latex/userguide_HPhi_ja.pdf $ROOTDIR/doc
cd ../en
cd $ROOTDIR/doc/en
make latexpdf
cp ./build/latex/userguide_HPhi_en.pdf $ROOTDIR/doc
cd $ROOTDIR/doc/tutorial/en
make latexpdf
cp ./build/latex/tutorial_HPhi_en.pdf $ROOTDIR/doc

# Make a tarball
cd $ROOTDIR
git-archive-all \
--extra=doc/userguide_HPhi_ja.pdf \
--extra=doc/userguide_HPhi_en.pdf \
--extra=doc/tutorial_HPhi_en.pdf \
--prefix=HPhi-${vid} \
HPhi-${vid}.tar.gz
2 changes: 1 addition & 1 deletion doc/en/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
# The short X.Y version.
version = '3.5'
# The full version, including alpha/beta/rc tags.
release = u'3.5.0'
release = u'3.5.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion doc/ja/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
# The short X.Y version.
version = '3.5'
# The full version, including alpha/beta/rc tags.
release = u'3.5.0'
release = u'3.5.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/include/version_patch.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0
1

0 comments on commit 56382ed

Please sign in to comment.