weixin4j-server:upgrade to 1.0.5

This commit is contained in:
jinyu 2015-08-13 12:08:43 +08:00
parent 461c0a9c5b
commit d4da1096a8
4 changed files with 9 additions and 5 deletions

View File

@ -82,4 +82,8 @@
+ version upgrade to 1.0.4 + version upgrade to 1.0.4
+ 调整WeixinServerBootstrap明文构造函数的参数为token + 调整WeixinServerBootstrap明文构造函数的参数为token
* 2015-08-13
+ version upgrade to 1.0.5

View File

@ -15,12 +15,12 @@ base on netty.
如何使用 如何使用
------- -------
###maven依赖(1.0.4,2015-08-09 released) ###maven依赖(1.0.5,2015-08-13 released)
<dependency> <dependency>
<groupId>com.foxinmy</groupId> <groupId>com.foxinmy</groupId>
<artifactId>weixin4j-server</artifactId> <artifactId>weixin4j-server</artifactId>
<version>1.0.4</version> <version>1.0.5</version>
</dependency> </dependency>
###编写服务启动类 ###编写服务启动类
明文模式并总是调试输出微信请求信息的服务启动类. 明文模式并总是调试输出微信请求信息的服务启动类.

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.foxinmy</groupId> <groupId>com.foxinmy</groupId>
<artifactId>weixin4j-server</artifactId> <artifactId>weixin4j-server</artifactId>
<version>1.0.4</version> <version>1.0.5</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>

View File

@ -324,5 +324,5 @@ public final class WeixinServerBootstrap {
return this; return this;
} }
public final static String VERSION = "1.0.4"; public final static String VERSION = "1.0.5";
} }