diff --git a/.cruft.json b/.cruft.json index 36fd169..c022f76 100644 --- a/.cruft.json +++ b/.cruft.json @@ -11,7 +11,7 @@ "project_slug": "figanos", "project_short_description": "Outils pour produire des graphiques informatifs sur les impacts des changements climatiques.", "pypi_username": "Sarahclaude", - "version": "0.3.1-dev.4", + "version": "0.3.1-dev.5", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/pyproject.toml b/pyproject.toml index cad5f01..627f1e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,7 +109,7 @@ target-version = [ ] [tool.bumpversion] -current_version = "0.3.1-dev.4" +current_version = "0.3.1-dev.5" commit = true commit_args = "--no-verify" tag = false diff --git a/src/figanos/__init__.py b/src/figanos/__init__.py index 20c7aff..9418784 100644 --- a/src/figanos/__init__.py +++ b/src/figanos/__init__.py @@ -2,7 +2,7 @@ __author__ = """Sarah-Claude Bourdeau-Goulet""" __email__ = "bourdeau-goulet.sarah-claude@ouranos.ca" -__version__ = "0.3.1-dev.4" +__version__ = "0.3.1-dev.5" from . import matplotlib from ._data import data diff --git a/tests/test_figanos.py b/tests/test_figanos.py index 40baab5..bfd9dab 100644 --- a/tests/test_figanos.py +++ b/tests/test_figanos.py @@ -35,4 +35,4 @@ def test_package_metadata(): contents = f.read() assert """Sarah-Claude Bourdeau-Goulet""" in contents assert '__email__ = "bourdeau-goulet.sarah-claude@ouranos.ca"' in contents - assert '__version__ = "0.3.1-dev.4"' in contents + assert '__version__ = "0.3.1-dev.5"' in contents