From 81898d06b323fa317a4d38778f8c8c6f845fecae Mon Sep 17 00:00:00 2001 From: Martin Dobias Date: Wed, 17 Nov 2021 11:10:43 +0100 Subject: [PATCH] version++ (1.0.5) --- geodiff/src/geodiff.cpp | 2 +- pygeodiff/__about__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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',