Skip to content

Commit 4ddde20

Browse files
authored
release: release for 1.7.0 (#5699)
1 parent 4ee495f commit 4ddde20

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

README.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -81,22 +81,28 @@ For more details about principle and design, please go to [Seata wiki page](http
8181

8282

8383
## Maven dependency
84+
Depending on the scenario, choose one of the two dependencies: `io.seata:seata-all` and `io.seata:seata-spring-boot-starter`.
8485
```xml
85-
<seata.version>1.6.1</seata.version>
86-
<dependency>
86+
<properties>
87+
<seata.version>1.7.0</seata.version>
88+
</properties>
89+
90+
<dependencies>
91+
<!--dependencies for non-SpringBoot application framework-->
92+
<dependency>
8793
<groupId>io.seata</groupId>
8894
<artifactId>seata-all</artifactId>
8995
<version>${seata.version}</version>
90-
</dependency>
96+
</dependency>
9197

9298
<!--If your project base on `Spring Boot`, you can directly use the following dependencies-->
93-
<!--Notice: `seata-spring-boot-starter` has included `seata-all` dependency-->
94-
<dependency>
99+
<!--Notice: `seata-spring-boot-starter` has already included `seata-all` dependency-->
100+
<dependency>
95101
<groupId>io.seata</groupId>
96102
<artifactId>seata-spring-boot-starter</artifactId>
97103
<version>${seata.version}</version>
98-
</dependency>
99-
104+
</dependency>
105+
</dependencies>
100106
```
101107
## Quick Start
102108

build/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
<properties>
6565
<!-- seata version -->
66-
<revision>1.7.0-SNAPSHOT</revision>
66+
<revision>1.7.0</revision>
6767

6868
<!-- Compiler settings properties -->
6969
<java.version>1.8</java.version>

changes/en-us/develop.md

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Add changes here for all PR submitted to the develop branch.
4545
- [[#5663](https://github.com/seata/seata/pull/5663)] bugfix: fix the timeout is null when the connectionProxyXA connection is reused
4646
- [[#5675](https://github.com/seata/seata/pull/5675)] bugfix: fix compatibility between xxx.grouplist and grouplist.xxx configuration items
4747
- [[#5690](https://github.com/seata/seata/pull/5690)] fix console print `unauthorized error`
48+
- [[#5711](https://github.com/seata/seata/pull/5711)] fix get configuration item contains underlined error
4849

4950
### optimize:
5051
- [[#5208](https://github.com/seata/seata/pull/5208)] optimize throwable getCause once more

changes/zh-cn/develop.md

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
- [[#5663](https://github.com/seata/seata/pull/5663)] 修复connectionProxyXA连接复用时timeout为null
4646
- [[#5675](https://github.com/seata/seata/pull/5675)] 修复 xxx.grouplist 和 grouplist.xxx 配置项兼容问题
4747
- [[#5690](https://github.com/seata/seata/pull/5690)] 修复控制台打印 `unauthorized error` 问题
48+
- [[#5711](https://github.com/seata/seata/pull/5711)] 修复取中划线配置项错误问题
4849

4950
### optimize:
5051
- [[#5208](https://github.com/seata/seata/pull/5208)] 优化多次重复获取Throwable#getCause问题

0 commit comments

Comments
 (0)