Skip to content

Commit

Permalink
release 0.7.1
Browse files Browse the repository at this point in the history
release 0.7.1
  • Loading branch information
slievrly committed Jul 15, 2019
2 parents 1b90f93 + 7584cfd commit 39e4d89
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 19 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>https://seata.io</url>
Expand Down
2 changes: 1 addition & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/io/seata/core/protocol/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
5 changes: 5 additions & 0 deletions spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,9 @@
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.
Expand All @@ -57,7 +54,7 @@
*/
public class GlobalTransactionScanner extends AbstractAutoProxyCreator
implements InitializingBean, ApplicationContextAware,
DisposableBean, BeanFactoryPostProcessor, PriorityOrdered {
DisposableBean {

/**
*
Expand Down Expand Up @@ -300,13 +297,4 @@ public void setApplicationContext(ApplicationContext applicationContext) throws
this.setBeanFactory(applicationContext);
}

@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
//do nothing
}

@Override
public int getOrder() {
return HIGHEST_PRECEDENCE;
}
}

0 comments on commit 39e4d89

Please sign in to comment.