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)",