Skip to content

Commit

Permalink
bump: 发布2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
uncarbon97 authored Apr 25, 2024
1 parent 914f65c commit e00d0ea
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 13 deletions.
6 changes: 3 additions & 3 deletions api/admin-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
<artifactId>admin-api</artifactId>
<description>后台管理HTTP-API</description>
<!-- 本微服务模块制品版本号 -->
<version>2.0.0</version>
<version>2.0.1</version>

<properties>
<!-- 引入其他微服务模块 -->
<!-- 后台管理服务 -->
<sys.version>2.0.0</sys.version>
<sys.version>2.0.1</sys.version>
<!-- 对象存储服务 -->
<oss.version>2.0.0</oss.version>
<oss.version>2.0.1</oss.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion api/app-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<artifactId>app-api</artifactId>
<description>C端HTTP-API</description>
<!-- 本微服务模块制品版本号 -->
<version>2.0.0</version>
<version>2.0.1</version>

<properties>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion microservice/oss/oss-facade/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>cc.uncarbon.module</groupId>
<artifactId>oss</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>oss-facade</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions microservice/oss/oss-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<parent>
<groupId>cc.uncarbon.module</groupId>
<artifactId>oss</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>oss-service</artifactId>

<properties>
<!-- 引入其他微服务模块 -->
<sys.version>2.0.0</sys.version>
<sys.version>2.0.1</sys.version>


<!-- 这里写其他第三方依赖 -->
Expand Down
2 changes: 1 addition & 1 deletion microservice/oss/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<artifactId>oss</artifactId>
<description>文件上传下载服务</description>
<!-- 本微服务模块制品版本号 -->
<version>2.0.0</version>
<version>2.0.1</version>

<modules>
<module>oss-facade</module>
Expand Down
2 changes: 1 addition & 1 deletion microservice/sys/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<artifactId>sys</artifactId>
<description>后台系统管理服务</description>
<!-- 本微服务模块制品版本号 -->
<version>2.0.0</version>
<version>2.0.1</version>

<modules>
<module>sys-facade</module>
Expand Down
2 changes: 1 addition & 1 deletion microservice/sys/sys-facade/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>cc.uncarbon.module</groupId>
<artifactId>sys</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>sys-facade</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion microservice/sys/sys-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>cc.uncarbon.module</groupId>
<artifactId>sys</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>sys-service</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ public class SysMenuService {
private final SysMenuMapper sysMenuMapper;
private final SysRoleMenuRelationService sysRoleMenuRelationService;

/**
* 仅用于输出一个,可按时间流逝而增长的纯数字,避免重复
*/
private static final Snowflake SNOWFLAKE = IdUtil.getSnowflake(0L, 0L);


Expand Down Expand Up @@ -247,7 +250,7 @@ private SysMenuBO entity2BO(SysMenuEntity entity) {

String snowflakeIdStr = SNOWFLAKE.nextIdStr();
bo
.setName(snowflakeIdStr)
.setName(bo.getTitle())
.setMeta(new VbenAdminMenuMetaVO(bo.getTitle(), false, bo.getIcon()));

switch (bo.getType()) {
Expand Down
2 changes: 1 addition & 1 deletion middleware/knife4j-aggregation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<artifactId>knife4j-aggregation</artifactId>
<description>OpenAPI文档的聚合、文档展示及调试</description>
<!-- 本微服务模块制品版本号 -->
<version>2.0.0</version>
<version>2.0.1</version>

<properties>
</properties>
Expand Down

0 comments on commit e00d0ea

Please sign in to comment.