Skip to content
Snippets Groups Projects
Unverified Commit 39e4d892 authored by jimin's avatar jimin Committed by GitHub
Browse files

release 0.7.1

release 0.7.1
parents 1b90f935 7584cfd9
No related branches found
Tags v0.7.1
No related merge requests found
......@@ -81,7 +81,7 @@ For more details about principle and design, please go to [Seata wiki page](http
## Maven dependency
```xml
<seata.version>0.6.1</seata.version>
<seata.version>0.7.1</seata.version>
<dependency>
<groupId>io.seata</groupId>
......@@ -127,7 +127,7 @@ Contributors are welcomed to join the FEATS project. Please check [CONTRIBUTING]
* [Seata Docker](https://github.com/seata/seata-docker) - Seata integration with docker
* [Seata K8s](https://github.com/seata/seata-k8s) - Seata integration with k8s
* [Awesome Seata](https://github.com/seata/awesome-seata) - Description of Seata related projects
* [Seata Website](https://github.com/seata/seata.github.io) - Seata official website***In the process of design***
* [Seata Website](https://github.com/seata/seata.github.io) - Seata official website
## Contributors
......
......@@ -21,7 +21,7 @@
<groupId>io.seata</groupId>
<artifactId>seata-all</artifactId>
<version>0.7.0</version>
<version>0.7.1</version>
<name>Seata All-in-one ${project.version}</name>
<url>http://seata.io</url>
......
......@@ -20,7 +20,7 @@
<groupId>io.seata</groupId>
<artifactId>seata-bom</artifactId>
<version>0.7.0</version>
<version>0.7.1</version>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
......
......@@ -31,7 +31,7 @@ public class Version {
/**
* The constant CURRENT.
*/
public static final String CURRENT = "0.7.0";
public static final String CURRENT = "0.7.1";
/**
* The constant VERSION_MAP.
......
......@@ -85,7 +85,7 @@
<properties>
<!-- seata version -->
<revision>0.7.0</revision>
<revision>0.7.1</revision>
<!-- Compiler settings properties -->
<maven.compiler.source>1.8</maven.compiler.source>
......
......@@ -48,6 +48,11 @@
<artifactId>seata-rm</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>seata-codec-all</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
......
......@@ -42,12 +42,9 @@ import org.springframework.aop.support.AopUtils;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.core.PriorityOrdered;
/**
* The type Global transaction scanner.
......@@ -57,7 +54,7 @@ import org.springframework.core.PriorityOrdered;
*/
public class GlobalTransactionScanner extends AbstractAutoProxyCreator
implements InitializingBean, ApplicationContextAware,
DisposableBean, BeanFactoryPostProcessor, PriorityOrdered {
DisposableBean {
/**
*
......@@ -300,13 +297,4 @@ public class GlobalTransactionScanner extends AbstractAutoProxyCreator
this.setBeanFactory(applicationContext);
}
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
//do nothing
}
@Override
public int getOrder() {
return HIGHEST_PRECEDENCE;
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment