Update version to v1.4.3

This commit is contained in:
tzutalin 2017-08-09 14:02:30 +08:00
parent c64a5eae9b
commit 6186acd575
4 changed files with 16 additions and 6 deletions

View File

@ -1,14 +1,22 @@
======= =======
History 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: auto saving
* Add feature: single class mode * Add feature: single class mode
* Fix the issues * Fix the issues
1.3.4 (2017-07-7) 1.3.4 (2017-07-07)
------------------ ------------------
* Fix issues and improve zoom-in * Fix issues and improve zoom-in

View File

@ -1,9 +1,9 @@
#!/bin/sh #!/bin/sh
# Packaging and Release # 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 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 case $yn in
[Yy]* ) docker run -it --rm --workdir=$(pwd)/ --volume="/home/$USER:/home/$USER" tzutalin/py2qt4; break;; [Yy]* ) docker run -it --rm --workdir=$(pwd)/ --volume="/home/$USER:/home/$USER" tzutalin/py2qt4; break;;
[Nn]* ) exit;; [Nn]* ) exit;;
@ -13,3 +13,5 @@ done
# python setup.py register # python setup.py register
# python setup.py sdist upload # python setup.py sdist upload
# Net pypi: twine upload dist/* # Net pypi: twine upload dist/*
# Test before upladoing: pip install dist/labelImg.tar.gz

View File

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 1.4.0 current_version = 1.4.3
commit = True commit = True
tag = True tag = True

View File

@ -21,7 +21,7 @@ test_requirements = [
setup( setup(
name='labelImg', 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", description="LabelImg is a graphical image annotation tool and label object bounding boxes in images",
long_description=readme + '\n\n' + history, long_description=readme + '\n\n' + history,
author="TzuTa Lin", author="TzuTa Lin",