Skip to content

Commit ad0d3ed

Browse files
committed
5.0.2
1 parent a4339e2 commit ad0d3ed

23 files changed

Lines changed: 25 additions & 22 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Distributed Transaction Framework - LCN (5.0.2.dev)
1+
# Distributed Transaction Framework - LCN (5.0.2.RELEASE)
22

33
[![Maven](https://img.shields.io/badge/endpoint.svg?url=https://bbs.txlcn.org/maven-central)](https://bbs.txlcn.org/maven-list)
44
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/codingapi/tx-lcn/blob/master/LICENSE)

README_zh_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TX-LCN分布式事务框架 (5.0.2.dev)
1+
# TX-LCN分布式事务框架 (5.0.2.RELEASE)
22

33
[![Maven](https://img.shields.io/badge/endpoint.svg?url=https://bbs.txlcn.org/maven-central)](https://bbs.txlcn.org/maven-list)
44
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/codingapi/tx-lcn/blob/master/LICENSE)

pom.xml

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

77
<groupId>com.codingapi.txlcn</groupId>
88
<artifactId>tx-lcn</artifactId>
9-
<version>5.0.2.dev</version>
9+
<version>5.0.2.RELEASE</version>
1010
<packaging>pom</packaging>
1111

1212

@@ -43,7 +43,7 @@
4343
<maven.javadoc.plugin>2.10.3</maven.javadoc.plugin>
4444
<maven.gpg.plugin>1.6</maven.gpg.plugin>
4545

46-
<codingapi.txlcn.version>5.0.2.dev</codingapi.txlcn.version>
46+
<codingapi.txlcn.version>5.0.2.RELEASE</codingapi.txlcn.version>
4747

4848
<txlcn-org.projectlombok.version>1.18.0</txlcn-org.projectlombok.version>
4949
<txlcn-spring-cloud.version>Finchley.SR2</txlcn-spring-cloud.version>

run.txmanager.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22

3-
start java -jar -Xms256m -Xmx512m txlcn-tm/target/txlcn-tm-5.0.2.dev.jar
3+
start java -jar -Xms256m -Xmx512m txlcn-tm/target/txlcn-tm-5.0.2.RELEASE.jar
44

txlcn-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>tx-lcn</artifactId>
77
<groupId>com.codingapi.txlcn</groupId>
8-
<version>5.0.2.dev</version>
8+
<version>5.0.2.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

txlcn-logger/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>tx-lcn</artifactId>
77
<groupId>com.codingapi.txlcn</groupId>
8-
<version>5.0.2.dev</version>
8+
<version>5.0.2.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

txlcn-tc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.codingapi.txlcn</groupId>
77
<artifactId>tx-lcn</artifactId>
8-
<version>5.0.2.dev</version>
8+
<version>5.0.2.RELEASE</version>
99
</parent>
1010

1111
<artifactId>txlcn-tc</artifactId>

txlcn-tc/src/main/java/com/codingapi/txlcn/tc/config/EnableDistributedTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Date: 1/19/19
2626
*
2727
* @author ujued
28-
* @since 5.0.2.dev
28+
* @since 5.0.2.RELEASE
2929
*/
3030
@Retention(RetentionPolicy.RUNTIME)
3131
@Target(ElementType.TYPE)

txlcn-tc/src/main/java/com/codingapi/txlcn/tc/core/DTXLocalContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public static void makeNeverAppeared() {
174174

175175
/**
176176
* 事务状态
177-
*
177+
* @param userDtxState state
178178
* @return 1 commit 0 rollback
179179
*/
180180
public static int transactionState(int userDtxState) {

txlcn-tc/src/main/java/com/codingapi/txlcn/tc/core/DTXLocalControl.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ default Object doBusinessCode(TxTransactionInfo info) throws Throwable {
5050
*
5151
* @param info info
5252
* @param throwable throwable
53+
* @throws TransactionException TransactionException
5354
*/
5455
default void onBusinessCodeError(TxTransactionInfo info, Throwable throwable) throws TransactionException {
5556

0 commit comments

Comments
 (0)