From 2ea13f469358039b0989db22b06f840ea3b9bd72 Mon Sep 17 00:00:00 2001 From: Wen Kokke Date: Sat, 18 Mar 2023 22:05:35 +0000 Subject: [PATCH] Bump version 0.1.3 -> 0.1.4 --- example/docs/conf.py | 2 +- pyproject.toml | 4 ++-- talondoc/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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")