diff --git a/setup.cfg b/setup.cfg index fc99c9004..8792cf745 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.4-beta +current_version = 0.11.4 commit = False tag = True parse = (?P\d+)\.(?P\d+).(?P\d+)(\-(?P[a-z]+))? diff --git a/setup.py b/setup.py index e1b2518d9..1cf93c26b 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ AUTHOR = "Travis Logan" AUTHOR_EMAIL = "logan.travis@ouranos.ca" REQUIRES_PYTHON = ">=3.5.0" -VERSION = "0.11.4-beta" +VERSION = "0.11.4" LICENSE = "Apache Software License 2.0" with open("README.rst") as readme_file: diff --git a/xclim/__init__.py b/xclim/__init__.py index 1729170c9..78824dde7 100644 --- a/xclim/__init__.py +++ b/xclim/__init__.py @@ -9,7 +9,7 @@ __author__ = """Travis Logan""" __email__ = "logan.travis@ouranos.ca" -__version__ = "0.11.4-beta" +__version__ = "0.11.4" def build_module(name, objs, doc="", source=None, mode="ignore"):