Skip to content

Commit

Permalink
ver++
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Oct 18, 2019
1 parent ddcd32e commit bfb39c6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion geodiff/src/geodiff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down
2 changes: 1 addition & 1 deletion pygeodiff/__about__.py
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/publish_pypi.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#from setuptools import setup
from skbuild import setup

VERSION = '0.6.3'
VERSION = '0.6.4'

setup(
name="pygeodiff",
Expand Down

0 comments on commit bfb39c6

Please sign in to comment.