Skip to content

Commit

Permalink
Release 0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepy-monax committed Sep 14, 2024
1 parent bc6bf8d commit 42a9e7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cutekit/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cutekit/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))

Expand Down

0 comments on commit 42a9e7a

Please sign in to comment.