diff --git a/docs/conf.py b/docs/conf.py index aa20bd1..54986bf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = "pytest-gee" author = "Pierrick Rambaud" copyright = f"2020-{datetime.now().year}, {author}" -release = "0.2.0" +release = "0.3.0" # -- General configuration ----------------------------------------------------- extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 22b5c1c..416dae9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pytest-gee" -version = "0.2.0" +version = "0.3.0" description = "The Python plugin for your GEE based packages." keywords = [ "skeleton", @@ -74,7 +74,7 @@ post-install-commands = ["pre-commit install"] [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = false -version = "0.2.0" +version = "0.3.0" version_files = [ "pyproject.toml:version", "pytest_gee/__init__.py:__version__", diff --git a/pytest_gee/__init__.py b/pytest_gee/__init__.py index af18d2a..ccee201 100644 --- a/pytest_gee/__init__.py +++ b/pytest_gee/__init__.py @@ -10,7 +10,7 @@ from pytest_gee import utils -__version__ = "0.2.0" +__version__ = "0.3.0" __author__ = "Pierrick Rambaud" __email__ = "pierrick.rambaud49@gmail.com"