From 42a9e7a7cf7339b54120146a735095461a0499c0 Mon Sep 17 00:00:00 2001 From: VAN BOSSUYT Nicolas Date: Sat, 14 Sep 2024 13:15:42 +0200 Subject: [PATCH] Release 0.7.5 --- cutekit/bootstrap.sh | 2 +- cutekit/const.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cutekit/bootstrap.sh b/cutekit/bootstrap.sh index b9aade6..6e765d3 100644 --- a/cutekit/bootstrap.sh +++ b/cutekit/bootstrap.sh @@ -11,7 +11,7 @@ if [ -z "$CUTEKIT_PYTHON" ]; then fi if [ -z "$CUTEKIT_VERSION" ]; then - export CUTEKIT_VERSION="0.7-dev" + export CUTEKIT_VERSION="0.7.5" fi if [ -n "$CUTEKIT_NOVENV" ]; then diff --git a/cutekit/const.py b/cutekit/const.py index b8a9edc..b066e40 100644 --- a/cutekit/const.py +++ b/cutekit/const.py @@ -14,7 +14,7 @@ def __bool__(self): raise Exception("Uninitialized constant") -VERSION = (0, 7, 4) +VERSION = (0, 7, 5) VERSION_STR = f"{VERSION[0]}.{VERSION[1]}.{VERSION[2]}{'-' + str(VERSION[-1]) if len(VERSION) > 3 else ''}" MODULE_DIR = os.path.dirname(os.path.realpath(__file__))