version upgrade to 1.1.8

This commit is contained in:
jinyu 2016-05-17 11:57:41 +08:00
parent 7be24ab658
commit ff0faefac3
3 changed files with 8 additions and 5 deletions

View File

@ -136,9 +136,12 @@
+ version upgrade to 1.1.6 + version upgrade to 1.1.6
* 2015-03-12 * 2015-03-12
+ 修改ClassUtil获取class不到的bug + 修改ClassUtil获取class不到的bug
+ ~~新增MultipleMessageHandlerAdapter多个消息适配类~~ + ~~新增MultipleMessageHandlerAdapter多个消息适配类~~
* 2016-05-17
+ version upgrade to 1.1.8

View File

@ -8,7 +8,7 @@
<version>1.6.9</version> <version>1.6.9</version>
</parent> </parent>
<artifactId>weixin4j-server</artifactId> <artifactId>weixin4j-server</artifactId>
<version>1.1.7</version> <version>1.1.8</version>
<name>weixin4j-server</name> <name>weixin4j-server</name>
<url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-server</url> <url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-server</url>
<description>微信消息netty服务器</description> <description>微信消息netty服务器</description>
@ -48,7 +48,7 @@
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId> <artifactId>spring-context</artifactId>
<version>4.2.0.RELEASE</version> <version>4.2.0.RELEASE</version>
<optional>true</optional> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -307,5 +307,5 @@ public final class WeixinServerBootstrap {
return this; return this;
} }
public final static String VERSION = "1.1.7"; public final static String VERSION = "1.1.8";
} }