diff --git a/docs/conf.py b/docs/conf.py index fb09dc9..8936abb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = "pytest-copie" author = "Pierrick Rambaud" copyright = f"2023-{datetime.now().year}, {author}" -release = "0.1.6" +release = "0.2.0" # -- General configuration ----------------------------------------------------- extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 2eb157b..924cae3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pytest-copie" -version = "0.1.6" +version = "0.2.0" description = "The pytest plugin for your copier templates 📒" keywords = [ "Python", @@ -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.1.6" +version = "0.2.0" version_files = [ "pyproject.toml:version", "pytest_copie/__init__.py:__version__", diff --git a/pytest_copie/__init__.py b/pytest_copie/__init__.py index 94c526c..71838e7 100644 --- a/pytest_copie/__init__.py +++ b/pytest_copie/__init__.py @@ -1,5 +1,5 @@ """The init file of the package.""" -__version__ = "0.1.6" +__version__ = "0.2.0" __author__ = "Pierrick Rambaud" __email__ = "pierrick.rambaud49@gmail.com"