From e576922bca6c3d12b5e8aac44ce1d64a9a6e4f24 Mon Sep 17 00:00:00 2001 From: Espen Hagen <2492641+espenhgn@users.noreply.github.com> Date: Sun, 22 Sep 2024 11:28:31 +0200 Subject: [PATCH] bump version 0.1.0rc5 --- version/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.py b/version/version.py index 7b2e674..7b3bbbc 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 = "rc5" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR) VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX) \ No newline at end of file