From bfb39c63383789cec0f5ea6c2f60a3ffb1b8a72a Mon Sep 17 00:00:00 2001 From: Peter Petrik Date: Fri, 18 Oct 2019 08:59:54 +0200 Subject: [PATCH] ver++ --- geodiff/src/geodiff.cpp | 2 +- pygeodiff/__about__.py | 2 +- scripts/ci/publish_pypi.bash | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/geodiff/src/geodiff.cpp b/geodiff/src/geodiff.cpp index e5b55d68..9328a88c 100644 --- a/geodiff/src/geodiff.cpp +++ b/geodiff/src/geodiff.cpp @@ -23,7 +23,7 @@ const char *GEODIFF_version() { - return "0.6.3"; + return "0.6.4"; } void _errorLogCallback( void *pArg, int iErrCode, const char *zMsg ) diff --git a/pygeodiff/__about__.py b/pygeodiff/__about__.py index d40a9eaa..0bf3dd97 100644 --- a/pygeodiff/__about__.py +++ b/pygeodiff/__about__.py @@ -1,7 +1,7 @@ __title__ = 'PyGeoDiff' __description__ = 'Diff tool for geo-spatial data' __url__ = 'https://github.com/lutraconsulting/geodiff' -__version__ = '0.6.3' +__version__ = '0.6.4' __author__ = 'Peter Petrik' __author_email__ = 'zilolv@gmail.com' __maintainer__ = 'Peter Petrik' diff --git a/scripts/ci/publish_pypi.bash b/scripts/ci/publish_pypi.bash index fe21f5e2..61da2f35 100755 --- a/scripts/ci/publish_pypi.bash +++ b/scripts/ci/publish_pypi.bash @@ -15,7 +15,7 @@ if [ -n "$TRAVIS_TAG" ]; then # publish sdist if [ "$TRAVIS_OS_NAME" == "linux" ]; then python3 setup.py sdist - ${PYTHON} -m twine upload dist/pygeodiff*.tar.gz --username "__token__" --password "$PYPI_TOKEN" --skip-existing + python3 -m twine upload dist/pygeodiff*.tar.gz --username "__token__" --password "$PYPI_TOKEN" --skip-existing fi $DIR/clean.bash diff --git a/setup.py b/setup.py index 19e08645..c6b59781 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ #from setuptools import setup from skbuild import setup -VERSION = '0.6.3' +VERSION = '0.6.4' setup( name="pygeodiff",