From b84aaf9bbcb6c734b7a3102066169922ad33a5c9 Mon Sep 17 00:00:00 2001 From: zendwang Date: Tue, 5 Jul 2022 09:13:19 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E4=B8=80=E7=89=88=E6=9C=AC=E5=8F=B7?= =?UTF-8?q?=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/yomahub/liteflow/util/LOGOPrinter.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/liteflow-core/src/main/java/com/yomahub/liteflow/util/LOGOPrinter.java b/liteflow-core/src/main/java/com/yomahub/liteflow/util/LOGOPrinter.java index 5aeeb0a80..85d07ff8d 100644 --- a/liteflow-core/src/main/java/com/yomahub/liteflow/util/LOGOPrinter.java +++ b/liteflow-core/src/main/java/com/yomahub/liteflow/util/LOGOPrinter.java @@ -10,6 +10,10 @@ import org.slf4j.LoggerFactory; public class LOGOPrinter { private static final Logger LOG = LoggerFactory.getLogger(LOGOPrinter.class); + /** + * LiteFlow 当前版本号 + */ + public static final String VERSION_NO = "v2.8.0"; public static void print() { StringBuilder str = new StringBuilder("\n"); @@ -19,7 +23,7 @@ public class LOGOPrinter { str.append(" | | | | | | | _| _____| |_ | | | | | \\ \\ /\\ / / \n"); str.append(" | |___ | | | | | |__|_____| _| | |__| |_| |\\ V V / \n"); str.append(" |_____|___| |_| |_____| |_| |_____\\___/ \\_/\\_/ \n\n"); - str.append(" Version: v2.8.0\n"); + str.append(" Version: " + VERSION_NO + "n"); str.append(" 轻量且强大的规则引擎框架。\n"); str.append(" Small but powerful rules engine.\n"); str.append("================================================================================================\n");