Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tx-lcn分布式事务框架 (5.0.0.RELEASE)
# tx-lcn分布式事务框架 (5.0.1.RELEASE)

[![Gitter](https://badges.gitter.im/codingapi/tx-lcn.svg)](https://gitter.im/codingapi/tx-lcn?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![BBS](https://bbs.txlcn.org/style/Archlinux/txlcn-bbs.svg)](https://bbs.txlcn.org)
Expand All @@ -18,7 +18,7 @@ TCC忽略不说。LCN与TXC两种框架实现的事务模式到底那个更优


版本较4.x主要特点:
1. 基于springboot 2.0研发
1. 基于springboot 研发
2. 抽离LCN封装业务,提出业务接口层与通讯层,可支持自定义分布式事务模式与通讯模式。
3. 支持LCN TXC TCC 三种事务模式,且可混合支持。
4. 性能较优秀,去掉了线程等待机制,提高吞吐量。
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.codingapi.txlcn</groupId>
<artifactId>tx-lcn</artifactId>
<version>5.0.0.RELEASE</version>
<version>5.0.1.RELEASE</version>
<packaging>pom</packaging>


Expand Down Expand Up @@ -43,7 +43,7 @@
<maven.javadoc.plugin>2.10.3</maven.javadoc.plugin>
<maven.gpg.plugin>1.6</maven.gpg.plugin>

<codingapi.txlcn.version>5.0.0.RELEASE</codingapi.txlcn.version>
<codingapi.txlcn.version>5.0.1.RELEASE</codingapi.txlcn.version>

<txlcn-org.projectlombok.version>1.18.0</txlcn-org.projectlombok.version>
<txlcn-spring-cloud.version>Finchley.SR2</txlcn-spring-cloud.version>
Expand Down
2 changes: 1 addition & 1 deletion run.txmanager.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@echo off

start java -jar -Xms256m -Xmx512m txlcn-tm/target/txlcn-tm-5.0.0.RELEASE.jar
start java -jar -Xms256m -Xmx512m txlcn-tm/target/txlcn-tm-5.0.1.RELEASE.jar

2 changes: 1 addition & 1 deletion txlcn-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>tx-lcn</artifactId>
<groupId>com.codingapi.txlcn</groupId>
<version>5.0.0.RELEASE</version>
<version>5.0.1.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion txlcn-logger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>tx-lcn</artifactId>
<groupId>com.codingapi.txlcn</groupId>
<version>5.0.0.RELEASE</version>
<version>5.0.1.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion txlcn-tc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.codingapi.txlcn</groupId>
<artifactId>tx-lcn</artifactId>
<version>5.0.0.RELEASE</version>
<version>5.0.1.RELEASE</version>
</parent>

<artifactId>txlcn-tc</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Date: 1/19/19
*
* @author ujued
* @since 5.0.0.RELEASE
* @since 5.0.1.RELEASE
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
Expand Down
2 changes: 1 addition & 1 deletion txlcn-tc/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ ${AnsiColor.BRIGHT_GREEN}
| | / /^\ \ | |___| \__/\| |\ |
\_/ \/ \/ \_____/\____/\_| \_/

TX-LCN TxClient version:5.0.0.RELEASE
TX-LCN TxClient version:5.0.1.RELEASE
4 changes: 2 additions & 2 deletions txlcn-tm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>com.codingapi.txlcn</groupId>
<artifactId>tx-lcn</artifactId>
<version>5.0.0.RELEASE</version>
<version>5.0.1.RELEASE</version>
</parent>

<artifactId>txlcn-tm</artifactId>
<version>5.0.0.RELEASE</version>
<version>5.0.1.RELEASE</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*/
public class TxLcnManagerBanner implements Banner {

public static final String VERSION = "5.0.0.RELEASE";
public static final String VERSION = "5.0.1.RELEASE";

private static final String BANNER =
" _______ __ _ _____ _ _ \n" +
Expand Down
2 changes: 1 addition & 1 deletion txlcn-tracing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>tx-lcn</artifactId>
<groupId>com.codingapi.txlcn</groupId>
<version>5.0.0.RELEASE</version>
<version>5.0.1.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion txlcn-txmsg-netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>tx-lcn</artifactId>
<groupId>com.codingapi.txlcn</groupId>
<version>5.0.0.RELEASE</version>
<version>5.0.1.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion txlcn-txmsg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>tx-lcn</artifactId>
<groupId>com.codingapi.txlcn</groupId>
<version>5.0.0.RELEASE</version>
<version>5.0.1.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down