From d7ef2293e1b15761d36690a13546b215d8542720 Mon Sep 17 00:00:00 2001 From: JarbasAl Date: Tue, 17 Sep 2024 23:07:44 +0000 Subject: [PATCH] Increment Version to 0.0.8 --- ovos_core/version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ovos_core/version.py b/ovos_core/version.py index 38e9a9eda27..98b6c3936b8 100644 --- a/ovos_core/version.py +++ b/ovos_core/version.py @@ -2,7 +2,7 @@ VERSION_MAJOR = 0 VERSION_MINOR = 0 VERSION_BUILD = 8 -VERSION_ALPHA = 132 +VERSION_ALPHA = 0 # END_VERSION_BLOCK # for compat with old imports @@ -32,4 +32,4 @@ def check_version(version_string): version_string (string): version string ('Major.Minor.Build') """ version_tuple = tuple(map(int, version_string.split('.'))) - return OVOS_VERSION_TUPLE >= version_tuple \ No newline at end of file + return OVOS_VERSION_TUPLE >= version_tuple