diff --git a/.cruft.json b/.cruft.json index ab6834b4..a7dc6521 100644 --- a/.cruft.json +++ b/.cruft.json @@ -11,7 +11,7 @@ "project_slug": "xscen", "project_short_description": "A climate change scenario-building analysis framework, built with xclim/xarray.", "pypi_username": "RondeauG", - "version": "0.7.14-beta", + "version": "0.7.15-beta", "use_pytest": "y", "use_black": "y", "add_pyup_badge": "n", diff --git a/setup.cfg b/setup.cfg index a7f2fbc4..d52fe214 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.14-beta +current_version = 0.7.15-beta commit = True tag = False parse = (?P\d+)\.(?P\d+).(?P\d+)(\-(?P[a-z]+))? diff --git a/setup.py b/setup.py index ae4e22b6..4952b2ab 100644 --- a/setup.py +++ b/setup.py @@ -102,6 +102,6 @@ def run(self): test_suite="tests", extras_require={"dev": dev_requirements}, url="https://github.com/Ouranosinc/xscen", - version="0.7.14-beta", + version="0.7.15-beta", zip_safe=False, ) diff --git a/tests/test_xscen.py b/tests/test_xscen.py index e8a4e2f2..30c400e2 100644 --- a/tests/test_xscen.py +++ b/tests/test_xscen.py @@ -28,4 +28,4 @@ def test_package_metadata(self): contents = f.read() assert """Gabriel Rondeau-Genesse""" in contents assert '__email__ = "rondeau-genesse.gabriel@ouranos.ca"' in contents - assert '__version__ = "0.7.14-beta"' in contents + assert '__version__ = "0.7.15-beta"' in contents diff --git a/xscen/__init__.py b/xscen/__init__.py index b8c5e817..55280871 100644 --- a/xscen/__init__.py +++ b/xscen/__init__.py @@ -52,7 +52,7 @@ __author__ = """Gabriel Rondeau-Genesse""" __email__ = "rondeau-genesse.gabriel@ouranos.ca" -__version__ = "0.7.14-beta" +__version__ = "0.7.15-beta" # monkeypatch so that warnings.warn() doesn't mention itself