Skip to content

Commit

Permalink
Release 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepy-monax committed Oct 22, 2023
1 parent d0ad38b commit 8a2024b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cutekit/cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def helpCmd(args: Args):


def versionCmd(args: Args):
print(f"CuteKit v{const.VERSION_STR}\n")
print(f"CuteKit v{const.VERSION_STR}")


cmds += [Cmd("v", "version", "Show current version", versionCmd)]
Expand Down
7 changes: 3 additions & 4 deletions cutekit/const.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import os
import sys

VERSION = (0, 6, 0, "dev")
VERSION_STR = f"{VERSION[0]}.{VERSION[1]}.{VERSION[2]}{'-' + VERSION[3] if VERSION[3] else ''}"
VERSION = (0, 5, 4)
VERSION_STR = f"{VERSION[0]}.{VERSION[1]}.{VERSION[2]}{'-' + VERSION[3] if len(VERSION) >= 4 else ''}"
MODULE_DIR = os.path.dirname(os.path.realpath(__file__))
ARGV0 = os.path.basename(sys.argv[0])
PROJECT_CK_DIR = ".cutekit"
Expand All @@ -16,5 +16,4 @@
DEFAULT_REPO_TEMPLATES = "cute-engineering/cutekit-templates"
DESCRIPTION = "A build system and package manager for low-level software development"
PROJECT_LOG_FILE = os.path.join(PROJECT_CK_DIR, "cutekit.log")
GLOBAL_LOG_FILE = os.path.join(
os.path.expanduser("~"), ".cutekit", "cutekit.log")
GLOBAL_LOG_FILE = os.path.join(os.path.expanduser("~"), ".cutekit", "cutekit.log")

0 comments on commit 8a2024b

Please sign in to comment.