Skip to content

Commit 1b17070

Browse files
committed
1.0.5 released
1 parent b389c45 commit 1b17070

File tree

9 files changed

+19
-20
lines changed

9 files changed

+19
-20
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
uid-generator-spring-boot
33
==========================
44

5-
UidGenerator是Java实现的, 基于[Snowflake](https://github.com/twitter/snowflake)算法的分布式唯一ID生成器
5+
UidGenerator是Java实现的, 基于[Snowflake](https://github.com/twitter/snowflake)算法的支持响应式编程分布式唯一ID生成器
66

77
基与 [Snowflake](https://github.com/twitter/snowflake)[百度UidGenerator](https://github.com/baidu/uid-generator)[uid-generator-spring-boot-starter](https://github.com/wujun234/uid-generator-spring-boot-starter)
88

@@ -25,6 +25,9 @@ UidGenerator是Java实现的, 基于[Snowflake](https://github.com/twitter/snowf
2525
### Maven
2626

2727
#### spring boot autoconfig 方式
28+
29+
当前版本:1.0.5
30+
2831
```xml
2932

3033
<!-- 根据你的项目环境 选择一种 worker node 分配方式 -->

pom.xml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.cooperlyt</groupId>
88
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
<packaging>pom</packaging>
1111

1212
<name>uid-generator-spring-boot</name>
@@ -147,10 +147,6 @@
147147
</goals>
148148
</execution>
149149
</executions>
150-
<configuration>
151-
<keyname>${gpg.keyname}</keyname>
152-
<passphraseServerId>${gpg.keyname}</passphraseServerId>
153-
</configuration>
154150
</plugin>
155151
</plugins>
156152
</build>
@@ -217,7 +213,7 @@
217213
<configuration>
218214
<serverId>ossrh</serverId>
219215
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
220-
<autoReleaseAfterClose>false</autoReleaseAfterClose>
216+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
221217
</configuration>
222218
</plugin>
223219
</plugins>

uid-generator-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
88
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-api</artifactId>

uid-generator-jap-jdbc-spring-boot-starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
88
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-jap-jdbc-spring-boot-starter</artifactId>
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>io.github.cooperlyt</groupId>
2323
<artifactId>uid-generator-spring-boot-starter</artifactId>
24-
<version>1.0.5-SNAPSHOT</version>
24+
<version>1.0.5</version>
2525
</dependency>
2626

2727
<dependency>

uid-generator-jpa-r2dbc-spring-boot-starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
88
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-jpa-r2dbc-spring-boot-starter</artifactId>
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>io.github.cooperlyt</groupId>
2323
<artifactId>uid-generator-spring-boot-starter</artifactId>
24-
<version>1.0.5-SNAPSHOT</version>
24+
<version>1.0.5</version>
2525
</dependency>
2626

2727
<dependency>

uid-generator-mybatis-jdbc-spring-boot-starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
88
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-mybatis-jdbc-spring-boot-starter</artifactId>
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>io.github.cooperlyt</groupId>
2626
<artifactId>uid-generator-spring-boot-starter</artifactId>
27-
<version>1.0.5-SNAPSHOT</version>
27+
<version>1.0.5</version>
2828
</dependency>
2929

3030

uid-generator-mybatis-r2dbc-spring-boot-starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
88
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-mybatis-r2dbc-spring-boot-starter</artifactId>
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>io.github.cooperlyt</groupId>
2424
<artifactId>uid-generator-spring-boot-starter</artifactId>
25-
<version>1.0.5-SNAPSHOT</version>
25+
<version>1.0.5</version>
2626
</dependency>
2727

2828
<dependency>

uid-generator-spring-boot-starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
88
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-spring-boot-starter</artifactId>
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>io.github.cooperlyt</groupId>
2929
<artifactId>uid-generator</artifactId>
30-
<version>1.0.5-SNAPSHOT</version>
30+
<version>1.0.5</version>
3131
</dependency>
3232

3333

uid-generator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
88
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
</parent>
1111

1212
<artifactId>uid-generator</artifactId>
@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>io.github.cooperlyt</groupId>
3535
<artifactId>uid-generator-api</artifactId>
36-
<version>1.0.5-SNAPSHOT</version>
36+
<version>1.0.5</version>
3737
</dependency>
3838
<dependency>
3939
<groupId>io.projectreactor</groupId>

0 commit comments

Comments
 (0)