From 066f2c7f9ef5048a38c4d4b247e41b85cf0c0f27 Mon Sep 17 00:00:00 2001 From: Aaron Dewes Date: Tue, 30 Aug 2022 10:46:51 +0200 Subject: [PATCH] Mark 0.1.5 as removal version for app.yml v2 and v3 --- app/lib/manage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/lib/manage.py b/app/lib/manage.py index 159fc38..7678a44 100644 --- a/app/lib/manage.py +++ b/app/lib/manage.py @@ -236,10 +236,10 @@ def getApp(app, appId: str): app["metadata"]["id"] = appId if 'version' in app and str(app['version']) == "2": - print("Warning: App {} uses version 2 of the app.yml format, which is scheduled for removal in Citadel 0.2.0".format(appId)) + print("Warning: App {} uses version 2 of the app.yml format, which is scheduled for removal in Citadel 0.1.5".format(appId)) return createComposeConfigFromV2(app, nodeRoot) elif 'version' in app and str(app['version']) == "3": - print("Warning: App {} uses version 3 of the app.yml format, which is scheduled for removal in Citadel 0.3.0".format(appId)) + print("Warning: App {} uses version 3 of the app.yml format, which is scheduled for removal in Citadel 0.1.5".format(appId)) return createComposeConfigFromV3(app, nodeRoot) else: raise Exception("Error: Unsupported version of app.yml")