bump version

This commit is contained in:
Soren I. Bjornstad 2021-09-21 20:45:44 -05:00
parent 86441e9618
commit 9a70b67af7
4 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@
2. Update version numbers:
`setup.py`,
`cli_docs/conf.py`,
`util.py`.
`tzk/util.py`.
3. Push changes to GitHub.
Check that RTD and GitHub Pages update as desired
(https://tzk.readthedocs.io/en/latest/,

View File

@ -18,9 +18,9 @@ copyright = '2021 Soren Bjornstad'
author = 'Soren Bjornstad'
# The short X.Y version
version = "0.1.0"
version = "0.1.1"
# The full version, including alpha/beta/rc tags
release = "0.1.0"
release = "0.1.1"
# -- General configuration ---------------------------------------------------

View File

@ -9,7 +9,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="tzk",
version="0.1.0",
version="0.1.1",
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.0"
TZK_VERSION = "0.1.1"
class BuildError(Exception):