diff --git a/geodiff/src/geodiff.cpp b/geodiff/src/geodiff.cpp index d741703a..5b10fdc5 100644 --- a/geodiff/src/geodiff.cpp +++ b/geodiff/src/geodiff.cpp @@ -31,7 +31,7 @@ // use scripts/update_version.py to update the version here and in other places at once const char *GEODIFF_version() { - return "1.0.4"; + return "1.0.5"; } void _errorLogCallback( void *pArg, int iErrCode, const char *zMsg ) diff --git a/pygeodiff/__about__.py b/pygeodiff/__about__.py index 9bd19aea..7b99ceb6 100644 --- a/pygeodiff/__about__.py +++ b/pygeodiff/__about__.py @@ -2,7 +2,7 @@ __description__ = 'Diff tool for geo-spatial data' __url__ = 'https://github.com/lutraconsulting/geodiff' # use scripts/update_version.py to update the version here and in other places at once -__version__ = '1.0.4' +__version__ = '1.0.5' __author__ = 'Peter Petrik' __author_email__ = 'zilolv@gmail.com' __maintainer__ = 'Peter Petrik' diff --git a/setup.py b/setup.py index 865e2742..12e75598 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import platform # use scripts/update_version.py to update the version here and in other places at once -VERSION = '1.0.4' +VERSION = '1.0.5' cmake_args = [ '-DENABLE_TESTS:BOOL=OFF',