bump version

This commit is contained in:
Soren I. Bjornstad 2021-09-22 10:58:25 -05:00
parent cb55a967d0
commit f2d9a2abe6
3 changed files with 4 additions and 4 deletions

View File

@ -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 ---------------------------------------------------

View File

@ -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",

View File

@ -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):