From a2a98dc1e8e44b6324d7d5830e3009446703ff60 Mon Sep 17 00:00:00 2001 From: Dennis van Gerwen <29799340+dennisvang@users.noreply.github.com> Date: Thu, 30 Jun 2022 19:21:17 +0200 Subject: [PATCH] issue20: switch to major version zero, following semantic versioning guidelines fixes #20 --- src/notsotuf/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/notsotuf/__init__.py b/src/notsotuf/__init__.py index 78b02b6..97f21cc 100644 --- a/src/notsotuf/__init__.py +++ b/src/notsotuf/__init__.py @@ -5,7 +5,8 @@ from notsotuf.utils import input_bool # https://packaging.python.org/en/latest/guides/single-sourcing-package-version/ -__version__ = 2022.0 +# https://semver.org/ +__version__ = '0.1.0' logger = logging.getLogger(__name__)