release: v4.0.0

This commit is contained in:
2025-07-27 15:42:24 +08:00
parent 600f4477c8
commit 035d37ae2d
6 changed files with 69 additions and 8 deletions

View File

@@ -77,7 +77,7 @@ public class ContiNewAdminApplication implements ApplicationRunner {
Integer port = serverProperties.getPort();
String contextPath = serverProperties.getServlet().getContextPath();
String baseUrl = URLUtil.normalize("%s:%s%s".formatted(hostAddress, port, contextPath));
log.info("-----------------------------------------------------");
log.info("--------------------------------------------------------");
log.info("{} server started successfully.", applicationProperties.getName());
log.info("ContiNew Starter: v{} (Spring Boot: v{})", SpringUtil
.getProperty("application.starter"), SpringBootVersion.getVersion());
@@ -88,8 +88,9 @@ public class ContiNewAdminApplication implements ApplicationRunner {
if (!knife4jProperties.isProduction()) {
log.info("接口文档: {}/doc.html", baseUrl);
}
log.info("在线文档: https://continew.top");
log.info("常见问题: https://continew.top/admin/faq.html");
log.info("-----------------------------------------------------");
log.info("更新日志: https://continew.top/admin/changelog/");
log.info("ContiNew Admin: 持续迭代优化的,高质量多租户中后台管理系统框架");
log.info("--------------------------------------------------------");
}
}

View File

@@ -6,7 +6,7 @@ application:
# 描述
description: 持续迭代优化的前后端分离中后台管理系统框架,开箱即用,持续提供舒适的开发体验。
# 版本
version: 4.0.0-SNAPSHOT
version: 4.0.0
starter: 2.13.4
# 基本包
base-package: top.continew.admin