release 1.6.0 & 1.1.0

This commit is contained in:
jinyu 2015-09-11 22:15:27 +08:00
parent 2f46625a71
commit 481f6e9be4
18 changed files with 44 additions and 26 deletions

View File

@ -458,3 +458,9 @@
* 2015-09-10
+ 对Netty-Http-Client的支持
* 2015-09-11
+ weixin4j-[mp|qy]:version upgrade to 1.6.0
+ weixin4j-server:version upgrade to 1.1.0

View File

@ -26,26 +26,26 @@ weixin4j
如何获取
----------
###1.maven依赖
微信公众平台API(1.5.3,2015-08-13 released)
微信公众平台API(1.6.0,2015-09-xx released)
<dependency>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j-mp</artifactId>
<version>1.5.3</version>
<version>1.6.0</version>
</dependency>
微信企业号API(1.5.3,2015-08-13 released)
微信企业号API(1.6.0,2015-09-xx released)
<dependency>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j-qy</artifactId>
<version>1.5.3</version>
<version>1.6.0</version>
</dependency>
微信回调消息服务器(1.0.5,2015-08-13 released)
微信回调消息服务器(1.1.0,2015-09-xx released)
<dependency>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j-server</artifactId>
<version>1.0.5</version>
<version>1.1.0</version>
</dependency>
以上依赖如果出现Missing artifact错误 请尝试在eclipse里这么做

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j</artifactId>
<version>1.5.4-SNAPSHOT</version>
<version>1.6.0</version>
<packaging>pom</packaging>
<name>weixin4j</name>
<url>https://github.com/foxinmy/weixin4j</url>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j</artifactId>
<version>1.5.4-SNAPSHOT</version>
<version>1.6.0</version>
</parent>
<artifactId>weixin4j-base</artifactId>
<name>weixin4j-base</name>

View File

@ -524,5 +524,5 @@ public class WeixinPayProxy {
return pay3Api.authCode2openId(authCode);
}
public final static String VERSION = "1.5.2";
public final static String VERSION = "1.6.0";
}

View File

@ -153,3 +153,7 @@
* 2015-09-08
+ 新增批量获取用户信息接口
* 2015-09-11
+ version upgrade to 1.6.0

View File

@ -43,12 +43,12 @@ weixin4j-mp
如何使用
--------
0.maven依赖(1.5.3,2015-08-13 released)
0.maven依赖(1.6.0,2015-09-11 released)
<dependency>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j-mp</artifactId>
<version>1.5.3</version>
<version>1.6.0</version>
</dependency>
1.需新增或拷贝`weixin4j.properties`文件到项目的`classpath`

View File

@ -5,7 +5,7 @@
<parent>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j</artifactId>
<version>1.5.4-SNAPSHOT</version>
<version>1.6.0</version>
</parent>
<artifactId>weixin4j-mp</artifactId>
<name>weixin4j-mp</name>

View File

@ -1352,5 +1352,5 @@ public class WeixinProxy {
return dataApi.datacube(datacubeType, date);
}
public final static String VERSION = "1.5.2";
public final static String VERSION = "1.6.0";
}

View File

@ -105,3 +105,7 @@
+ version upgrade to 1.5.3
+ 媒体接口类(MediaApi)查询素材接口调整:去掉offset,count替换为Pageable类
* 2015-09-11
+ version upgrade to 1.6.0

View File

@ -37,12 +37,12 @@ weixin4j-qy
如何使用
--------
0.maven依赖(1.5.3,2015-08-13 released)
0.maven依赖(1.6.0,2015-09-11 released)
<dependency>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j-qy</artifactId>
<version>1.5.3</version>
<version>1.6.0</version>
</dependency>
1.需新增或拷贝`weixin4j.properties`文件到项目的`classpath`

View File

@ -5,7 +5,7 @@
<parent>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j</artifactId>
<version>1.5.4-SNAPSHOT</version>
<version>1.6.0</version>
</parent>
<artifactId>weixin4j-qy</artifactId>
<name>weixin4j-qy</name>

View File

@ -1180,5 +1180,5 @@ public class WeixinProxy {
return chatApi.sendChatMessage(message);
}
public final static String VERSION = "1.5.3";
public final static String VERSION = "1.6.0";
}

View File

@ -91,5 +91,5 @@ public class WeixinSuiteProxy {
return this.suiteMap.get(suiteId);
}
public final static String VERSION = "1.5.3";
public final static String VERSION = "1.6.0";
}

View File

@ -87,3 +87,7 @@
* 2015-08-13
+ version upgrade to 1.0.5
* 2015-09-11
+ version upgrade to 1.1.0

View File

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

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j-server</artifactId>
<version>1.0.5</version>
<version>1.1.0</version>
<name>weixin4j-server</name>
<url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-server</url>
<description>微信消息netty服务器</description>

View File

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