From 33748f7cec77bda4b692b2d859b8668aa062e03b Mon Sep 17 00:00:00 2001 From: Charles7c Date: Sun, 19 Oct 2025 20:34:46 +0800 Subject: [PATCH] =?UTF-8?q?feat(core):=20=E6=B7=BB=E5=8A=A0=20ContiNew=20S?= =?UTF-8?q?tarter=20=E7=89=88=E6=9C=AC=E4=BF=A1=E6=81=AF=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../starter/core/ContiNewStarterVersion.java | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 continew-starter-core/src/main/java/top/continew/starter/core/ContiNewStarterVersion.java diff --git a/continew-starter-core/src/main/java/top/continew/starter/core/ContiNewStarterVersion.java b/continew-starter-core/src/main/java/top/continew/starter/core/ContiNewStarterVersion.java new file mode 100644 index 00000000..0ddcda97 --- /dev/null +++ b/continew-starter-core/src/main/java/top/continew/starter/core/ContiNewStarterVersion.java @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2022-present Charles7c Authors. All Rights Reserved. + *

+ * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0; + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + *

+ * http://www.gnu.org/licenses/lgpl.html + *

+ * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package top.continew.starter.core; + +/** + * ContiNew Starter 版本 + * + * @author Charles7c + * @since 2.15.0 + */ +public final class ContiNewStarterVersion { + + private ContiNewStarterVersion() { + } + + /** + * Return the full version string of the present ContiNew Starter codebase. + * + * @return the version of ContiNew Starter + */ + public static String getVersion() { + return "2.15.0"; + } +}