diff --git a/.cruft.json b/.cruft.json index 097e5472..2860861a 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.2.2", + "version": "0.3.0", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/CHANGES.rst b/CHANGES.rst index f13dd180..0c1c0dca 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,7 +2,7 @@ Changelog ========= -0.3.0 (Unreleased) +0.3.0 (2024-02-16) ------------------ Contributors to this version: Sarah-Claude Bourdeau-Goulet (:user:`Sarahclaude`), Pascal Bourgault (:user:`aulemahal`), Trevor James Smith (:user:`Zeitsperre`), Juliette Lavoie (:user:`juliettelavoie`), Gabriel Rondeau-Genesse (:user:`RondeauG`). diff --git a/figanos/__init__.py b/figanos/__init__.py index 6057226f..59a3e243 100644 --- a/figanos/__init__.py +++ b/figanos/__init__.py @@ -2,7 +2,7 @@ __author__ = """Sarah-Claude Bourdeau-Goulet""" __email__ = "bourdeau-goulet.sarah-claude@ouranos.ca" -__version__ = "0.2.2" +__version__ = "0.3.0" from . import matplotlib from ._logo import Logos diff --git a/pyproject.toml b/pyproject.toml index 5af32af1..9fb10b01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -108,7 +108,7 @@ target-version = [ ] [tool.bumpversion] -current_version = "0.2.2" +current_version = "0.3.0" commit = true commit_args = "--no-verify" tag = false diff --git a/tests/test_figanos.py b/tests/test_figanos.py index b7f529e9..414396db 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.2.2"' in contents + assert '__version__ = "0.3.0"' in contents