From 2fa7788b8b390b6716c7e0ca82dca7020c8cc982 Mon Sep 17 00:00:00 2001 From: Aaron Riedener Date: Sun, 7 Apr 2024 13:24:29 +0200 Subject: [PATCH] Update koalix-crm to version 1.14.0 The koalix-crm version has been updated from 1.14.0-rc2 to 1.14.0 in requirements.txt and version.py files. Additionally, the display format of the version info in dashboard.py has been adjusted for better readability. --- dashboard.py | 2 +- requirements.txt | 2 +- version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard.py b/dashboard.py index d600113..ba4d3b6 100644 --- a/dashboard.py +++ b/dashboard.py @@ -19,7 +19,7 @@ class CustomIndexDashboard(Dashboard): def init_with_context(self, context): self.children.append(modules.Group( - _('koalixcrm Version ' + KOALIXCRM_VERSION + 'koalixcrm Docker Version ' + KOALIXCRM_DOCKER_VERSION), + _('koalixcrm Version ' + KOALIXCRM_VERSION + ' / koalixcrm Docker Version ' + KOALIXCRM_DOCKER_VERSION), column=1, collapsible=True, children=[ diff --git a/requirements.txt b/requirements.txt index 45e0a47..5226f61 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -koalix-crm==1.14.0-rc2 +koalix-crm==1.14.0 gunicorn==21.2.0 \ No newline at end of file diff --git a/version.py b/version.py index 55aa843..98e8303 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -KOALIXCRM_DOCKER_VERSION = "1.14.0-rc2" +KOALIXCRM_DOCKER_VERSION = "1.14.0"