Skip to content

Commit 436cc58

Browse files
author
gaohongtao
committed
Update to 1.4.1
1 parent f0e78f4 commit 436cc58

File tree

22 files changed

+24
-23
lines changed

22 files changed

+24
-23
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.dangdang</groupId>
44
<artifactId>sharding-jdbc</artifactId>
5-
<version>1.4.1-SNAPSHOT</version>
5+
<version>1.4.1</version>
66
<packaging>pom</packaging>
77
<name>${project.artifactId}</name>
88

sharding-jdbc-config-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.dangdang</groupId>
88
<artifactId>sharding-jdbc</artifactId>
9-
<version>1.4.1-SNAPSHOT</version>
9+
<version>1.4.1</version>
1010
</parent>
1111
<artifactId>sharding-jdbc-config-parent</artifactId>
1212
<packaging>pom</packaging>

sharding-jdbc-config-parent/sharding-jdbc-config-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>sharding-jdbc-config-parent</artifactId>
88
<groupId>com.dangdang</groupId>
9-
<version>1.4.1-SNAPSHOT</version>
9+
<version>1.4.1</version>
1010
</parent>
1111
<artifactId>sharding-jdbc-config-common</artifactId>
1212
<dependencies>

sharding-jdbc-config-parent/sharding-jdbc-config-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>sharding-jdbc-config-parent</artifactId>
55
<groupId>com.dangdang</groupId>
6-
<version>1.4.1-SNAPSHOT</version>
6+
<version>1.4.1</version>
77
</parent>
88
<artifactId>sharding-jdbc-config-spring</artifactId>
99
<dependencies>

sharding-jdbc-config-parent/sharding-jdbc-config-yaml/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>sharding-jdbc-config-parent</artifactId>
88
<groupId>com.dangdang</groupId>
9-
<version>1.4.1-SNAPSHOT</version>
9+
<version>1.4.1</version>
1010
</parent>
1111
<artifactId>sharding-jdbc-config-yaml</artifactId>
1212
<dependencies>

sharding-jdbc-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.dangdang</groupId>
66
<artifactId>sharding-jdbc</artifactId>
7-
<version>1.4.1-SNAPSHOT</version>
7+
<version>1.4.1</version>
88
</parent>
99
<artifactId>sharding-jdbc-core</artifactId>
1010
<name>${project.artifactId}</name>

sharding-jdbc-doc/content/post/release_notes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ weight = 1
66

77
# Release Notes
88

9-
## 1.4.1-SNAPSHOT
9+
## 1.4.1
1010

1111
### 功能提升
1212

1313
1. [ISSUE #191](https://github.com/dangdangdotcom/sharding-jdbc/issues/191) 根据主机的IP生成workerId的IdGenerator实现
1414
1. [ISSUE #192](https://github.com/dangdangdotcom/sharding-jdbc/issues/192) 根据HOSTNAME的数字尾缀获取workerId的IdGenerator
15+
1. [ISSUE #210](https://github.com/dangdangdotcom/sharding-jdbc/issues/210) 路由到单库单表移除补充的SQL语句片段
1516

1617
### 缺陷修正
1718

sharding-jdbc-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.dangdang</groupId>
44
<artifactId>sharding-jdbc-example</artifactId>
5-
<version>1.4.1-SNAPSHOT</version>
5+
<version>1.4.1</version>
66
<packaging>pom</packaging>
77

88
<modules>
@@ -22,7 +22,7 @@
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<project.build.locale>zh_CN</project.build.locale>
2424

25-
<sharding-jdbc.version>1.4.1-SNAPSHOT</sharding-jdbc.version>
25+
<sharding-jdbc.version>1.4.1</sharding-jdbc.version>
2626

2727
<commons-dbcp.version>1.4</commons-dbcp.version>
2828
<mysql-connector-java.version>5.1.30</mysql-connector-java.version>

sharding-jdbc-example/sharding-jdbc-example-config-spring-masterslave/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>sharding-jdbc-example</artifactId>
44
<groupId>com.dangdang</groupId>
5-
<version>1.4.1-SNAPSHOT</version>
5+
<version>1.4.1</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>sharding-jdbc-example-config-spring-masterslave</artifactId>

sharding-jdbc-example/sharding-jdbc-example-config-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.dangdang</groupId>
88
<artifactId>sharding-jdbc-example</artifactId>
9-
<version>1.4.1-SNAPSHOT</version>
9+
<version>1.4.1</version>
1010
</parent>
1111
<artifactId>sharding-jdbc-example-config-spring</artifactId>
1212
</project>

0 commit comments

Comments
 (0)