diff --git a/example/docs/conf.py b/example/docs/conf.py index fa2e57ee..471f1847 100644 --- a/example/docs/conf.py +++ b/example/docs/conf.py @@ -14,7 +14,7 @@ project = "TalonDoc" copyright = "2022, Wen Kokke" author = "Wen Kokke" -release = "0.2.0" +release = "0.2.1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index a1c3bc16..bb584fca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "talondoc" -version = "0.2.0" +version = "0.2.1" description = "A Sphinx extension for Talon user directories." license = "MIT" authors = ["Wen Kokke "] @@ -69,7 +69,7 @@ minversion = "6.0" testpaths = ["tests"] [tool.bumpver] -current_version = "0.2.0" +current_version = "0.2.1" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "Bump version {old_version} -> {new_version}" commit = true diff --git a/talondoc/__init__.py b/talondoc/__init__.py index 26211f42..c224c35e 100644 --- a/talondoc/__init__.py +++ b/talondoc/__init__.py @@ -5,7 +5,7 @@ from .autogen import autogen from .cache_builtin import cache_builtin -__version__: str = "0.2.0" +__version__: str = "0.2.1" @click.group(name="talondoc")