diff --git a/example/docs/conf.py b/example/docs/conf.py index 0ca8a100..62323931 100644 --- a/example/docs/conf.py +++ b/example/docs/conf.py @@ -14,7 +14,7 @@ project = "example" copyright = "2022, Wen Kokke" author = "Wen Kokke" -release = "0.1.3" +release = "0.1.4" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 40e57766..7966defb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "talondoc" -version = "0.1.3" +version = "0.1.4" description = "A Sphinx extension for Talon user directories." license = "MIT" authors = ["Wen Kokke "] @@ -61,7 +61,7 @@ minversion = "6.0" testpaths = ["tests"] [tool.bumpver] -current_version = "0.1.3" +current_version = "0.1.4" 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 373b120f..b402f4ba 100644 --- a/talondoc/__init__.py +++ b/talondoc/__init__.py @@ -5,7 +5,7 @@ from .autosummary.generate import generate from .cache_builtin import cache_builtin -__version__: str = "0.1.3" +__version__: str = "0.1.4" @click.group(name="talondoc")