From 77808d3ae90bd3b492d6a9c87e764e95a7a8afdd Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 9 Nov 2025 03:07:47 +0100 Subject: [PATCH] Core: Bump version from 0.6.4 to 0.6.5 (#5607) --- Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.py b/Utils.py index e79e54182d..ab9f91e111 100644 --- a/Utils.py +++ b/Utils.py @@ -48,7 +48,7 @@ class Version(typing.NamedTuple): return ".".join(str(item) for item in self) -__version__ = "0.6.4" +__version__ = "0.6.5" version_tuple = tuplize_version(__version__) is_linux = sys.platform.startswith("linux")