From 3b5684dc05285ac2df6332952dfa04fb56814819 Mon Sep 17 00:00:00 2001 From: Espen Hagen <2492641+espenhgn@users.noreply.github.com> Date: Mon, 24 Oct 2022 15:03:34 +0200 Subject: [PATCH] add rc0 version suffix --- version/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.py b/version/version.py index b49f44b..65b6474 100644 --- a/version/version.py +++ b/version/version.py @@ -5,7 +5,7 @@ _PATCH = "0" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. -_SUFFIX = "" +_SUFFIX = "rc0" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR) VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX) \ No newline at end of file