Skip to content

Commit aa1fc7c

Browse files
committed
1.0.6 is start
1 parent 0d45db2 commit aa1fc7c

File tree

40 files changed

+42
-40
lines changed

40 files changed

+42
-40
lines changed

.idea/encodings.xml

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.cn.md

Lines changed: 1 addition & 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+
UidReactiveGenerator是Java实现的, 基于[Snowflake](https://github.com/twitter/snowflake)算法的支持响应式编程分布式唯一ID生成器。
66

77
基与 [雪花算法](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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ uid-generator-spring-boot-starter
44

55
[In Chinese 中文版](https://github.com/cooperlyt/uid-generator-spring-boot/blob/master/README.cn.md)
66

7-
UidGenerator is a Java implemented, [Snowflake](https://github.com/twitter/snowflake) based distributed unique ID generator, Supported Reactive Programming and R2DBC。
7+
UidReactiveGenerator is a Java implemented, [Snowflake](https://github.com/twitter/snowflake) based distributed unique ID generator, Supported Reactive Programming and R2DBC。
88

99
Based on [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)
1010

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66

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

1212
<name>uid-generator-spring-boot</name>
@@ -42,10 +42,10 @@
4242
</developers>
4343

4444
<modules>
45-
<module>uid-generator</module>
45+
<module>uid-reactive-generator</module>
4646
<module>uid-generator-mybatis-jdbc-spring-boot-starter</module>
47-
<module>uid-generator-api</module>
48-
<module>uid-generator-spring-boot-starter</module>
47+
<module>uid-reactive-generator-api</module>
48+
<module>uid-reactive-generator-spring-boot-starter</module>
4949
<module>uid-generator-mybatis-r2dbc-spring-boot-starter</module>
5050
<module>uid-generator-jpa-r2dbc-spring-boot-starter</module>
5151
<module>uid-generator-jap-jdbc-spring-boot-starter</module>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
8-
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5</version>
8+
<artifactId>uid-reactive-generator-spring-boot</artifactId>
9+
<version>1.0.6-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-jap-jdbc-spring-boot-starter</artifactId>
@@ -20,8 +20,8 @@
2020
<dependencies>
2121
<dependency>
2222
<groupId>io.github.cooperlyt</groupId>
23-
<artifactId>uid-generator-spring-boot-starter</artifactId>
24-
<version>1.0.5</version>
23+
<artifactId>uid-reactive-generator-spring-boot-starter</artifactId>
24+
<version>1.0.6-SNAPSHOT</version>
2525
</dependency>
2626

2727
<dependency>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
8-
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5</version>
8+
<artifactId>uid-reactive-generator-spring-boot</artifactId>
9+
<version>1.0.6-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-jpa-r2dbc-spring-boot-starter</artifactId>
@@ -20,8 +20,8 @@
2020
<dependencies>
2121
<dependency>
2222
<groupId>io.github.cooperlyt</groupId>
23-
<artifactId>uid-generator-spring-boot-starter</artifactId>
24-
<version>1.0.5</version>
23+
<artifactId>uid-reactive-generator-spring-boot-starter</artifactId>
24+
<version>1.0.6-SNAPSHOT</version>
2525
</dependency>
2626

2727
<dependency>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
8-
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5</version>
8+
<artifactId>uid-reactive-generator-spring-boot</artifactId>
9+
<version>1.0.6-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-mybatis-jdbc-spring-boot-starter</artifactId>
@@ -23,8 +23,8 @@
2323

2424
<dependency>
2525
<groupId>io.github.cooperlyt</groupId>
26-
<artifactId>uid-generator-spring-boot-starter</artifactId>
27-
<version>1.0.5</version>
26+
<artifactId>uid-reactive-generator-spring-boot-starter</artifactId>
27+
<version>1.0.6-SNAPSHOT</version>
2828
</dependency>
2929

3030

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
8-
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5</version>
8+
<artifactId>uid-reactive-generator-spring-boot</artifactId>
9+
<version>1.0.6-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>uid-generator-mybatis-r2dbc-spring-boot-starter</artifactId>
@@ -21,8 +21,8 @@
2121

2222
<dependency>
2323
<groupId>io.github.cooperlyt</groupId>
24-
<artifactId>uid-generator-spring-boot-starter</artifactId>
25-
<version>1.0.5</version>
24+
<artifactId>uid-reactive-generator-spring-boot-starter</artifactId>
25+
<version>1.0.6-SNAPSHOT</version>
2626
</dependency>
2727

2828
<dependency>

uid-generator-api/pom.xml renamed to uid-reactive-generator-api/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
8-
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5</version>
8+
<artifactId>uid-reactive-generator-spring-boot</artifactId>
9+
<version>1.0.6-SNAPSHOT</version>
1010
</parent>
1111

12-
<artifactId>uid-generator-api</artifactId>
12+
<artifactId>uid-reactive-generator-api</artifactId>
1313

1414
<properties>
1515
<maven.compiler.source>15</maven.compiler.source>

uid-generator-spring-boot-starter/pom.xml renamed to uid-reactive-generator-spring-boot-starter/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
8-
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5</version>
8+
<artifactId>uid-reactive-generator-spring-boot</artifactId>
9+
<version>1.0.6-SNAPSHOT</version>
1010
</parent>
1111

12-
<artifactId>uid-generator-spring-boot-starter</artifactId>
12+
<artifactId>uid-reactive-generator-spring-boot-starter</artifactId>
1313

1414
<properties>
1515
<maven.compiler.source>15</maven.compiler.source>
@@ -26,8 +26,8 @@
2626

2727
<dependency>
2828
<groupId>io.github.cooperlyt</groupId>
29-
<artifactId>uid-generator</artifactId>
30-
<version>1.0.5</version>
29+
<artifactId>uid-reactive-generator</artifactId>
30+
<version>1.0.6-SNAPSHOT</version>
3131
</dependency>
3232

3333

uid-generator/pom.xml renamed to uid-reactive-generator/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>io.github.cooperlyt</groupId>
8-
<artifactId>uid-generator-spring-boot</artifactId>
9-
<version>1.0.5</version>
8+
<artifactId>uid-reactive-generator-spring-boot</artifactId>
9+
<version>1.0.6-SNAPSHOT</version>
1010
</parent>
1111

12-
<artifactId>uid-generator</artifactId>
12+
<artifactId>uid-reactive-generator</artifactId>
1313

1414
<properties>
1515
<maven.compiler.source>15</maven.compiler.source>
@@ -32,8 +32,8 @@
3232

3333
<dependency>
3434
<groupId>io.github.cooperlyt</groupId>
35-
<artifactId>uid-generator-api</artifactId>
36-
<version>1.0.5</version>
35+
<artifactId>uid-reactive-generator-api</artifactId>
36+
<version>1.0.6-SNAPSHOT</version>
3737
</dependency>
3838
<dependency>
3939
<groupId>io.projectreactor</groupId>

0 commit comments

Comments
 (0)