Skip to content

Commit

Permalink
Bump 3.1.3
Browse files Browse the repository at this point in the history
Signed-off-by: Joffrey F <joffrey@docker.com>
  • Loading branch information
shin- committed Mar 20, 2018
1 parent 88b0d69 commit af67415
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = "3.1.2"
version = "3.1.3"
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
7 changes: 7 additions & 0 deletions docs/change-log.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change log
==========

3.1.3
-----

### Bugfixes

* Regenerated invalid wheel package

3.1.2
-----

Expand Down
6 changes: 6 additions & 0 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ if [ -z $VERSION ]; then
exit 1
fi

echo "##> Removing stale build files"
rm -rf ./build || exit 1

echo "##> Tagging the release as $VERSION"
git tag $VERSION || exit 1
if [[ $2 == 'upload' ]]; then
Expand All @@ -30,4 +33,7 @@ pandoc -f markdown -t rst README.md -o README.rst || exit 1
if [[ $2 == 'upload' ]]; then
echo "##> Uploading sdist to pypi"
python setup.py sdist bdist_wheel upload
else
echo "##> sdist & wheel"
python setup.py sdist bdist_wheel
fi

0 comments on commit af67415

Please sign in to comment.