From 3a796db5980acb7245d007e41e026f110c51cac5 Mon Sep 17 00:00:00 2001 From: Espen Hagen <2492641+espenhgn@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:48:49 +0200 Subject: [PATCH] bump version --- version/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.py b/version/version.py index fbafbfc..b49f44b 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 = "-rc4" +_SUFFIX = "" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR) VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX) \ No newline at end of file