From 67187ff9746bbc40318a4c501177c5ff9b4b9623 Mon Sep 17 00:00:00 2001 From: cyp Date: Fri, 4 Aug 2023 10:41:04 -0400 Subject: [PATCH] fix: use empty string instead of 'stable' in version (#14) --- cutekit/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cutekit/const.py b/cutekit/const.py index da8dcce..c83e088 100644 --- a/cutekit/const.py +++ b/cutekit/const.py @@ -1,7 +1,7 @@ import os import sys -VERSION = (0, 5, 0, "stable") +VERSION = (0, 5, 1, "") VERSION_STR = f"{VERSION[0]}.{VERSION[1]}.{VERSION[2]}{'-' + VERSION[3] if VERSION[3] else ''}" MODULE_DIR = os.path.dirname(os.path.realpath(__file__)) ARGV0 = os.path.basename(sys.argv[0])