diff --git a/RELEASING.md b/RELEASING.md index 0938e62..01d68a1 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -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/, diff --git a/cli_docs/conf.py b/cli_docs/conf.py index 1f20f77..2f3d6aa 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.0" +version = "0.1.1" # The full version, including alpha/beta/rc tags -release = "0.1.0" +release = "0.1.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index d3eeb08..ff24388 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.0", + version="0.1.1", 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 ca725d2..222d20f 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.0" +TZK_VERSION = "0.1.1" class BuildError(Exception):