Skip to content

Commit 7fe2e0f

Browse files
committed
Update docs before release
1 parent 76b7490 commit 7fe2e0f

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# pyautocv's change log
22

3+
**Release 0.3.0**
34
**pyautocv 0.2.2**
45

56
- Extended tests and coverage

docs/source/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
pyautocv's change log
33
=====================
44

5+
**Release 0.3.0**
56
**pyautocv 0.2.2**
67

78

pyautocv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import sys
1111
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
1212
__author__="Nelson Gonzabato"
13-
__version__="0.2.0".encode("ascii","ignore").decode('ascii')
13+
__version__="0.3.0".encode("ascii","ignore").decode('ascii')
1414
__all__=["segmentation"]
1515

1616

pyautocv/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.1".encode("ascii","ignore").decode('ascii')
1+
__version__ = "0.3.0".encode("ascii","ignore").decode('ascii')

scripts/release.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@ check_status (){
55
case "$docs_answer" in
66
[yY][eE][sS] | [yY] ) read -p "Have you updated the version number in all places?" version_answer
77
case "$version_answer" in
8-
[yY][eE][sS] | [yY] ) echo "Perfect. Removing dist and uploading to test.pypi";
9-
rm -r dist;python setup.py sdist;python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*;;
8+
[yY][eE][sS] | [yY] ) echo "Perfect. Cleaning up and uploading to test.pypi"
9+
if [ -d dist ]
10+
then
11+
rm -r dist;
12+
fi;
13+
python setup.py sdist;python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*;;
1014
[nN][oO] ) echo "Please update version number first";exit 1;;
1115
esac;;
1216
[nN][oO] | [nN] ) echo "Please update docs first";;

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33
setup(name='pyautocv',
4-
version="0.2.2".encode("ascii", "ignore").decode('ascii'),
4+
version="0.3.0".encode("ascii", "ignore").decode('ascii'),
55
description='(Semi) Automated Image Processing',
66
url='http://www.github.com/Nelson-Gon/pyautocv',
77
author='Nelson Gonzabato',

0 commit comments

Comments
 (0)