Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
tzutalin committed Aug 9, 2017
1 parent c64a5ea commit ae0ef29
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
12 changes: 10 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
=======
History
=======
1.4.0 (2017-0-7)

1.4.3 (2017-08-09)
------------------

* Refactor setting
* Fix the issues


1.4.0 (2017-07-07)
------------------

* Add feature: auto saving
* Add feature: single class mode
* Fix the issues

1.3.4 (2017-07-7)
1.3.4 (2017-07-07)
------------------

* Fix issues and improve zoom-in
Expand Down
6 changes: 4 additions & 2 deletions build-tools/build-for-pypi.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/sh
# Packaging and Release
docker run --workdir=$(pwd)/ --volume="/home/$USER:/home/$USER" tzutalin/py2qt4 /bin/sh -c 'sudo python setup.py sdist;sudo python setup.py install'
docker run --workdir=$(pwd)/ --volume="/home/$USER:/home/$USER" tzutalin/py2qt4 /bin/sh -c 'make qt4py2; make test;sudo python setup.py sdist;sudo python setup.py install'

while true; do
read -p "Do you wish to deploy this to PyPI?" yn
read -p "Do you wish to deploy this to PyPI(twine upload dist/* or pip install dist/*)?" yn
case $yn in
[Yy]* ) docker run -it --rm --workdir=$(pwd)/ --volume="/home/$USER:/home/$USER" tzutalin/py2qt4; break;;
[Nn]* ) exit;;
Expand All @@ -13,3 +13,5 @@ done
# python setup.py register
# python setup.py sdist upload
# Net pypi: twine upload dist/*

# Test before upladoing: pip install dist/labelImg.tar.gz
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.0
current_version = 1.4.3
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name='labelImg',
version='1.4.0',
version='1.4.3',
description="LabelImg is a graphical image annotation tool and label object bounding boxes in images",
long_description=readme + '\n\n' + history,
author="TzuTa Lin",
Expand Down

0 comments on commit ae0ef29

Please sign in to comment.