Skip to content

Commit af67415

Browse files
committed
Bump 3.1.3
Signed-off-by: Joffrey F <[email protected]>
1 parent 88b0d69 commit af67415

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

docker/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = "3.1.2"
1+
version = "3.1.3"
22
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])

docs/change-log.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change log
22
==========
33

4+
3.1.3
5+
-----
6+
7+
### Bugfixes
8+
9+
* Regenerated invalid wheel package
10+
411
3.1.2
512
-----
613

scripts/release.sh

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ if [ -z $VERSION ]; then
1818
exit 1
1919
fi
2020

21+
echo "##> Removing stale build files"
22+
rm -rf ./build || exit 1
23+
2124
echo "##> Tagging the release as $VERSION"
2225
git tag $VERSION || exit 1
2326
if [[ $2 == 'upload' ]]; then
@@ -30,4 +33,7 @@ pandoc -f markdown -t rst README.md -o README.rst || exit 1
3033
if [[ $2 == 'upload' ]]; then
3134
echo "##> Uploading sdist to pypi"
3235
python setup.py sdist bdist_wheel upload
36+
else
37+
echo "##> sdist & wheel"
38+
python setup.py sdist bdist_wheel
3339
fi

0 commit comments

Comments
 (0)