version upgrade to 1.6.3 & 1.1.3
This commit is contained in:
parent
b4a865dedd
commit
cabf9e2900
2
pom.xml
2
pom.xml
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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";
|
||||
}
|
||||
|
||||
@ -165,3 +165,7 @@
|
||||
* 2015-09-21
|
||||
|
||||
+ version upgrade to 1.6.2
|
||||
|
||||
* 2015-11-09
|
||||
|
||||
+ version upgrade to 1.6.3
|
||||
@ -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`中
|
||||
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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";
|
||||
}
|
||||
|
||||
@ -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");
|
||||
|
||||
@ -117,3 +117,7 @@
|
||||
* 2015-09-21
|
||||
|
||||
+ version upgrade to 1.6.2
|
||||
|
||||
* 2015-11-09
|
||||
|
||||
+ version upgrade to 1.6.3
|
||||
@ -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`中
|
||||
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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";
|
||||
}
|
||||
|
||||
@ -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";
|
||||
}
|
||||
|
||||
@ -103,3 +103,7 @@
|
||||
* 2015-10-25
|
||||
|
||||
+ 新增认证通知事件
|
||||
|
||||
* 2015-11-09
|
||||
|
||||
+ version upgrade to 1.1.3
|
||||
@ -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>
|
||||
###编写服务启动类
|
||||
明文模式并总是调试输出微信请求信息的服务启动类.
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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";
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user