diff --git a/docs/conf.py b/docs/conf.py index 4cc8f77..e8992ac 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.1.0" +release = "0.1.1" # -- General configuration ----------------------------------------------------- extensions = [ diff --git a/pyproject.toml b/pyproject.toml index d852ce2..65be556 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pytest-copie" -version = "0.1.0" +version = "0.1.1" description = "The pytest plugin for your Copier templates." keywords = ["skeleton", "Python"] classifiers = [ @@ -70,7 +70,7 @@ exclude = ["docs*", "tests*"] [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = false -version = "0.1.0" +version = "0.1.1" version_files = [ "pyproject.toml:version", "pytest_copie/__init__.py:__version__", diff --git a/pytest_copie/__init__.py b/pytest_copie/__init__.py index 1caf2c6..c97b88c 100644 --- a/pytest_copie/__init__.py +++ b/pytest_copie/__init__.py @@ -1,5 +1,5 @@ """The init file of the package.""" -__version__ = "0.1.0" +__version__ = "0.1.1" __author__ = "Pierrick Rambaud" __email__ = "pierrick.rambaud49@gmail.com"