diff --git a/.cruft.json b/.cruft.json index ee0ff7e8..47215b2a 100644 --- a/.cruft.json +++ b/.cruft.json @@ -11,7 +11,7 @@ "project_slug": "xhydro", "project_short_description": "Hydrological analysis library built with xarray", "pypi_username": "TC-FF", - "version": "0.2.1", + "version": "0.2.2", "use_pytest": "y", "use_black": "y", "add_pyup_badge": "n", diff --git a/setup.cfg b/setup.cfg index 5cafa6f8..4cca1e0d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2 commit = True tag = True diff --git a/setup.py b/setup.py index 4887f7d7..a46e14d0 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,6 @@ "dev": dev_requirements, }, url="https://github.com/hydrologie/xhydro", - version="0.2.1", + version="0.2.2", zip_safe=False, ) diff --git a/tests/test_xhydro.py b/tests/test_xhydro.py index 6dcea564..f9145660 100644 --- a/tests/test_xhydro.py +++ b/tests/test_xhydro.py @@ -36,4 +36,4 @@ def test_package_metadata(): contents = f.read() assert """Thomas-Charles Fortier Filion""" in contents assert '__email__ = "tcff_hydro@outlook.com"' in contents - assert '__version__ = "0.2.1"' in contents + assert '__version__ = "0.2.2"' in contents diff --git a/xhydro/__init__.py b/xhydro/__init__.py index 657893e9..76f998af 100644 --- a/xhydro/__init__.py +++ b/xhydro/__init__.py @@ -6,4 +6,4 @@ __author__ = """Thomas-Charles Fortier Filion""" __email__ = "tcff_hydro@outlook.com" -__version__ = "0.2.1" +__version__ = "0.2.2"