version upgrade to 1.7.2
This commit is contained in:
parent
688467887e
commit
2325132ac7
11
CHANGE.md
11
CHANGE.md
@ -757,4 +757,13 @@
|
||||
|
||||
+ version upgrade to 1.7.1
|
||||
|
||||
+ LOGGER级别优化
|
||||
+ LOGGER级别优化
|
||||
|
||||
|
||||
* 2016-08-22
|
||||
|
||||
+ weixin4j-base:删除`Weixin4jSettings`配置类
|
||||
|
||||
* 2016-10-10
|
||||
|
||||
+ version upgrade to 1.7.2
|
||||
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j</artifactId>
|
||||
<version>1.7.1</version>
|
||||
<version>1.7.2</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.7.1</version>
|
||||
<version>1.7.2</version>
|
||||
</parent>
|
||||
<artifactId>weixin4j-base</artifactId>
|
||||
<name>weixin4j-base</name>
|
||||
|
||||
@ -83,8 +83,8 @@ public class RedisCacheStorager<T extends Cacheable> implements
|
||||
byte[] cacheKey = key.getBytes(Consts.UTF_8);
|
||||
byte[] value = SerializationUtils.serialize(cache);
|
||||
if (cache.getExpires() > 0) {
|
||||
jedis.setex(cacheKey, (int) (cache.getExpires() - CUTMS) / 1000,
|
||||
value);
|
||||
jedis.setex(cacheKey,
|
||||
(int) (cache.getExpires() - CUTMS) / 1000, value);
|
||||
} else {
|
||||
jedis.set(cacheKey, value);
|
||||
}
|
||||
|
||||
@ -856,5 +856,5 @@ public class WeixinPayProxy {
|
||||
return customsApi.queryCustomsOrder(idQuery, customsCity);
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.1";
|
||||
public final static String VERSION = "1.7.2";
|
||||
}
|
||||
|
||||
@ -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
|
||||
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j</artifactId>
|
||||
<version>1.7.1</version>
|
||||
<version>1.7.2</version>
|
||||
</parent>
|
||||
<artifactId>weixin4j-mp</artifactId>
|
||||
<name>weixin4j-mp</name>
|
||||
|
||||
@ -225,5 +225,5 @@ public class WeixinComponentProxy {
|
||||
authAppId), component(componentId).getTokenManager());
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.1";
|
||||
public final static String VERSION = "1.7.2";
|
||||
}
|
||||
|
||||
@ -1972,5 +1972,5 @@ public class WeixinProxy {
|
||||
return cardApi.createCardQR(expireSeconds, cardQRs);
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.1";
|
||||
public final static String VERSION = "1.7.2";
|
||||
}
|
||||
|
||||
@ -191,4 +191,8 @@
|
||||
|
||||
* 2016-08-09
|
||||
|
||||
+ version upgrade to 1.7.1
|
||||
+ version upgrade to 1.7.1
|
||||
|
||||
* 2016-10-10
|
||||
|
||||
+ version upgrade to 1.7.2
|
||||
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j</artifactId>
|
||||
<version>1.7.1</version>
|
||||
<version>1.7.2</version>
|
||||
</parent>
|
||||
<artifactId>weixin4j-qy</artifactId>
|
||||
<name>weixin4j-qy</name>
|
||||
|
||||
@ -1415,5 +1415,5 @@ public class WeixinProxy {
|
||||
return chatApi.sendChatMessage(message);
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.1";
|
||||
public final static String VERSION = "1.7.2";
|
||||
}
|
||||
|
||||
@ -285,5 +285,5 @@ public class WeixinSuiteProxy {
|
||||
suite(suiteId).getTokenManager());
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.1";
|
||||
public final static String VERSION = "1.7.2";
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user