From e5633f49a1f6e3edac30819d3a206c709a9bec25 Mon Sep 17 00:00:00 2001 From: Martin Dobias Date: Mon, 25 Jul 2022 14:18:36 +0200 Subject: [PATCH] version++ (2.0.0) --- 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 3b1d38c..0987766 100644 --- a/geodiff/src/geodiff.cpp +++ b/geodiff/src/geodiff.cpp @@ -34,7 +34,7 @@ // use scripts/update_version.py to update the version here and in other places at once const char *GEODIFF_version() { - return "1.0.6"; + return "2.0.0"; } int GEODIFF_driverCount( GEODIFF_ContextH /*contextHandle*/ ) diff --git a/pygeodiff/__about__.py b/pygeodiff/__about__.py index cf2a9c3..966dd5d 100644 --- a/pygeodiff/__about__.py +++ b/pygeodiff/__about__.py @@ -2,7 +2,7 @@ __description__ = 'Diff tool for geo-spatial data' __url__ = 'https://github.com/MerginMaps/geodiff' # use scripts/update_version.py to update the version here and in other places at once -__version__ = '1.0.6' +__version__ = '2.0.0' __author__ = 'Lutra Consulting Ltd.' __author_email__ = 'info@merginmaps.com' __maintainer__ = 'Lutra Consulting Ltd.' diff --git a/setup.py b/setup.py index 660b3ed..62c0ee5 100755 --- 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.6' +VERSION = '2.0.0' cmake_args = [ '-DENABLE_TESTS:BOOL=OFF',