From 2bf9543ed6ef093b0f5792fe78f401d3b49b718c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bosch?= Date: Wed, 2 Sep 2020 14:06:14 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.1.2=20=E2=86=92=202.1.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 +-- pylandstats/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index df6ee0c..0a26760 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.2 +current_version = 2.1.3 commit = True tag = True @@ -8,4 +8,3 @@ tag = True [bumpversion:file:pylandstats/__init__.py] search = __version__ = '{current_version}' replace = __version__ = '{new_version}' - diff --git a/pylandstats/__init__.py b/pylandstats/__init__.py index 6e19f48..7eefd48 100644 --- a/pylandstats/__init__.py +++ b/pylandstats/__init__.py @@ -2,4 +2,4 @@ from .spatiotemporal import * from .zonal import * -__version__ = '2.1.2' +__version__ = '2.1.3' diff --git a/setup.py b/setup.py index 21547ee..d4862f2 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ if sys.version_info[:2] < (3, 6): raise RuntimeError("Python version >= 3.6 required.") -__version__ = '2.1.2' +__version__ = '2.1.3' classifiers = [ "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",