version upgrade to 1.7.2

This commit is contained in:
jinyu 2016-10-10 22:48:07 +08:00
parent 688467887e
commit 2325132ac7
13 changed files with 31 additions and 14 deletions

View File

@ -757,4 +757,13 @@
+ version upgrade to 1.7.1 + version upgrade to 1.7.1
+ LOGGER级别优化 + LOGGER级别优化
* 2016-08-22
+ weixin4j-base:删除`Weixin4jSettings`配置类
* 2016-10-10
+ version upgrade to 1.7.2

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</artifactId> <artifactId>weixin4j</artifactId>
<version>1.7.1</version> <version>1.7.2</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>weixin4j</name> <name>weixin4j</name>
<url>https://github.com/foxinmy/weixin4j</url> <url>https://github.com/foxinmy/weixin4j</url>

View File

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.foxinmy</groupId> <groupId>com.foxinmy</groupId>
<artifactId>weixin4j</artifactId> <artifactId>weixin4j</artifactId>
<version>1.7.1</version> <version>1.7.2</version>
</parent> </parent>
<artifactId>weixin4j-base</artifactId> <artifactId>weixin4j-base</artifactId>
<name>weixin4j-base</name> <name>weixin4j-base</name>

View File

@ -83,8 +83,8 @@ public class RedisCacheStorager<T extends Cacheable> implements
byte[] cacheKey = key.getBytes(Consts.UTF_8); byte[] cacheKey = key.getBytes(Consts.UTF_8);
byte[] value = SerializationUtils.serialize(cache); byte[] value = SerializationUtils.serialize(cache);
if (cache.getExpires() > 0) { if (cache.getExpires() > 0) {
jedis.setex(cacheKey, (int) (cache.getExpires() - CUTMS) / 1000, jedis.setex(cacheKey,
value); (int) (cache.getExpires() - CUTMS) / 1000, value);
} else { } else {
jedis.set(cacheKey, value); jedis.set(cacheKey, value);
} }

View File

@ -856,5 +856,5 @@ public class WeixinPayProxy {
return customsApi.queryCustomsOrder(idQuery, customsCity); return customsApi.queryCustomsOrder(idQuery, customsCity);
} }
public final static String VERSION = "1.7.1"; public final static String VERSION = "1.7.2";
} }

View File

@ -248,4 +248,8 @@
+ 新增创建卡券二维码接口 + 新增创建卡券二维码接口
+ version upgrade to 1.7.1 + version upgrade to 1.7.1
* 2016-10-10
+ version upgrade to 1.7.2

View File

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

View File

@ -225,5 +225,5 @@ public class WeixinComponentProxy {
authAppId), component(componentId).getTokenManager()); authAppId), component(componentId).getTokenManager());
} }
public final static String VERSION = "1.7.1"; public final static String VERSION = "1.7.2";
} }

View File

@ -1972,5 +1972,5 @@ public class WeixinProxy {
return cardApi.createCardQR(expireSeconds, cardQRs); return cardApi.createCardQR(expireSeconds, cardQRs);
} }
public final static String VERSION = "1.7.1"; public final static String VERSION = "1.7.2";
} }

View File

@ -191,4 +191,8 @@
* 2016-08-09 * 2016-08-09
+ version upgrade to 1.7.1 + version upgrade to 1.7.1
* 2016-10-10
+ version upgrade to 1.7.2

View File

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

View File

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

View File

@ -285,5 +285,5 @@ public class WeixinSuiteProxy {
suite(suiteId).getTokenManager()); suite(suiteId).getTokenManager());
} }
public final static String VERSION = "1.7.1"; public final static String VERSION = "1.7.2";
} }