From c62b10eef3de1e0b47e65233ceccced23fb7ffa5 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Tue, 5 Sep 2023 13:08:35 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.0.0=20=E2=86=92=200.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 2 +- pyproject.toml | 4 ++-- pytest_copie/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 6403e04..1fb2e6b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = "pytest-copie" author = "Pierrick Rambaud" copyright = f"2020-{datetime.now().year}, {author}" -release = "0.0.0" +release = "0.0.1" # -- General configuration ----------------------------------------------------- extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 20db0ec..6e9e03f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pytest-copie" -version = "0.0.0" +version = "0.0.1" description = "The pytest plugin for your Copier templates." keywords = ["skeleton", "Python"] classifiers = [ @@ -49,7 +49,7 @@ exclude = ["docs*", "tests*"] [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = false -version = "0.0.0" +version = "0.0.1" version_files = [ "pyproject.toml:version", "pytest_copie/__init__.py:__version__", diff --git a/pytest_copie/__init__.py b/pytest_copie/__init__.py index 6e6d12f..d76a495 100644 --- a/pytest_copie/__init__.py +++ b/pytest_copie/__init__.py @@ -1,6 +1,6 @@ """The init file of the package.""" -__version__ = "0.0.0" +__version__ = "0.0.1" __author__ = "Pierrick Rambaud" __email__ = "pierrick.rambaud49@gmail.com"