diff --git a/.cruft.json b/.cruft.json index aa7240e0..53f71f66 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.3.2", + "version": "0.3.3", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/pyproject.toml b/pyproject.toml index 266672f4..ac75f0bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -100,7 +100,7 @@ target-version = [ ] [tool.bumpversion] -current_version = "0.3.2" +current_version = "0.3.3" commit = true tag = false tag_name = "v{new_version}" @@ -123,6 +123,7 @@ filename = ".cruft.json" search = "\"version\": \"{current_version}\"" replace = "\"version\": \"{new_version}\"" + [tool.coverage.run] relative_files = true include = ["xhydro/*"] diff --git a/tests/test_xhydro.py b/tests/test_xhydro.py index 04534e99..419bd4f4 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.3.2"' in contents + assert '__version__ = "0.3.3"' in contents diff --git a/xhydro/__init__.py b/xhydro/__init__.py index e7eaad1f..1e92ef37 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.3.2" +__version__ = "0.3.3"