version upgrade to 1.6.3 & 1.1.3

This commit is contained in:
jinyu 2015-11-10 10:05:42 +08:00
parent b4a865dedd
commit cabf9e2900
17 changed files with 33 additions and 21 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j</artifactId>
<version>1.6.2</version>
<version>1.6.3</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.6.2</version>
<version>1.6.3</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.6.2";
public final static String VERSION = "1.6.3";
}

View File

@ -164,4 +164,8 @@
* 2015-09-21
+ version upgrade to 1.6.2
+ version upgrade to 1.6.2
* 2015-11-09
+ version upgrade to 1.6.3

View File

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

View File

@ -5,7 +5,7 @@
<parent>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j</artifactId>
<version>1.6.2</version>
<version>1.6.3</version>
</parent>
<artifactId>weixin4j-mp</artifactId>
<name>weixin4j-mp</name>

View File

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

View File

@ -88,8 +88,8 @@ public class MenuApi extends MpApi {
public List<Button> getMenu() throws WeixinException {
String menu_get_uri = getRequestUri("menu_get_uri");
Token token = tokenHolder.getToken();
WeixinResponse response = weixinExecutor.get(String.format(menu_get_uri,
token.getAccessToken()));
WeixinResponse response = weixinExecutor.get(String.format(
menu_get_uri, token.getAccessToken()));
JSONArray buttons = response.getAsJson().getJSONObject("menu")
.getJSONArray("button");

View File

@ -116,4 +116,8 @@
* 2015-09-21
+ version upgrade to 1.6.2
+ version upgrade to 1.6.2
* 2015-11-09
+ version upgrade to 1.6.3

View File

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

View File

@ -5,7 +5,7 @@
<parent>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j</artifactId>
<version>1.6.2</version>
<version>1.6.3</version>
</parent>
<artifactId>weixin4j-qy</artifactId>
<name>weixin4j-qy</name>

View File

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

View File

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

View File

@ -102,4 +102,8 @@
* 2015-10-25
+ 新增认证通知事件
+ 新增认证通知事件
* 2015-11-09
+ version upgrade to 1.1.3

View File

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

View File

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

View File

@ -326,5 +326,5 @@ public final class WeixinServerBootstrap {
return this;
}
public final static String VERSION = "1.1.2";
public final static String VERSION = "1.1.3";
}