From f2d9a2abe6b20ef1dea5cc3696501af047c0880d Mon Sep 17 00:00:00 2001 From: "Soren I. Bjornstad" Date: Wed, 22 Sep 2021 10:58:25 -0500 Subject: [PATCH] bump version --- cli_docs/conf.py | 4 ++-- setup.py | 2 +- tzk/util.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cli_docs/conf.py b/cli_docs/conf.py index 07dad19..d79e52a 100644 --- a/cli_docs/conf.py +++ b/cli_docs/conf.py @@ -18,9 +18,9 @@ copyright = '2021 Soren Bjornstad' author = 'Soren Bjornstad' # The short X.Y version -version = "0.1.2" +version = "0.1.3" # The full version, including alpha/beta/rc tags -release = "0.1.2" +release = "0.1.3" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 6f51a45..667af52 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="tzk", - version="0.1.2", + version="0.1.3", author="Soren I. Bjornstad", author_email="zettelkasten@sorenbjornstad.com", description="Build tool for TiddlyWiki Zettelkasten", diff --git a/tzk/util.py b/tzk/util.py index 9545717..f041cba 100644 --- a/tzk/util.py +++ b/tzk/util.py @@ -10,7 +10,7 @@ import sys from typing import Any, Callable, Dict, NoReturn -TZK_VERSION = "0.1.2" +TZK_VERSION = "0.1.3" class BuildError(Exception):