Skip to content

Commit 968a2ff

Browse files
authoredDec 28, 2022
bump version to 0.2.4 (#96)
1 parent dba8893 commit 968a2ff

File tree

3 files changed

+41
-6
lines changed

3 files changed

+41
-6
lines changed
 

‎.editorconfig

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# see http://editorconfig.org/
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.java]
12+
indent_size = 2
13+
tab_width = 2
14+
max_line_length = 100
15+
ij_any_spaces_around_additive_operators = true
16+
ij_any_spaces_around_assignment_operators = true
17+
ij_any_spaces_around_bitwise_operators = true
18+
ij_any_spaces_around_equality_operators = true
19+
ij_any_spaces_around_lambda_arrow = true
20+
ij_any_spaces_around_logical_operators = true
21+
ij_any_spaces_around_multiplicative_operators = true
22+
ij_any_spaces_around_relational_operators = true
23+
ij_any_spaces_around_shift_operators = true
24+
ij_continuation_indent_size = 4
25+
ij_java_if_brace_force = always
26+
ij_java_indent_case_from_switch = false
27+
ij_java_space_after_colon = true
28+
ij_java_space_before_colon = true
29+
ij_java_ternary_operation_signs_on_next_line = true
30+
ij_java_use_single_class_imports = true
31+
ij_java_wrap_long_lines = true
32+
33+
[*.json]
34+
indent_style = space
35+
indent_size = 2

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![JavaDoc](http://img.shields.io/badge/javadoc-reference-blue.svg)](https://www.javadoc.io/doc/com.github.wechatpay-apiv3/wechatpay-java/latest/index.html)
2-
![Maven Central](https://img.shields.io/maven-central/v/com.github.wechatpay-apiv3/wechatpay-java?versionPrefix=0.2.3)
2+
![Maven Central](https://img.shields.io/maven-central/v/com.github.wechatpay-apiv3/wechatpay-java?versionPrefix=0.2.4)
33
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=wechatpay-apiv3_wechatpay-java&metric=coverage)](https://sonarcloud.io/summary/new_code?id=wechatpay-apiv3_wechatpay-java)
44

55
# 微信支付 APIv3 Java SDK
@@ -13,7 +13,7 @@
1313

1414
## 项目状态
1515

16-
当前版本`0.2.3`为测试版本,项目规划详如下。
16+
当前版本`0.2.4`为测试版本,项目规划详如下。
1717

1818
| 工作项 | 状态 |
1919
| ----- | -- |
@@ -40,7 +40,7 @@
4040
#### Gradle
4141
在你的 build.gradle 文件中加入如下的依赖
4242
```groovy
43-
implementation 'com.github.wechatpay-apiv3:wechatpay-java:0.2.3'
43+
implementation 'com.github.wechatpay-apiv3:wechatpay-java:0.2.4'
4444
```
4545

4646
#### Maven
@@ -49,7 +49,7 @@ implementation 'com.github.wechatpay-apiv3:wechatpay-java:0.2.3'
4949
<dependency>
5050
<groupId>com.github.wechatpay-apiv3</groupId>
5151
<artifactId>wechatpay-java</artifactId>
52-
<version>0.2.3</version>
52+
<version>0.2.4</version>
5353
</dependency>
5454
```
5555

@@ -167,7 +167,7 @@ SDK 使用的是 unchecked exception,会抛出四种自定义异常。每种
167167

168168
## 自动更新微信支付平台证书
169169

170-
在 API 请求过程中,客户端需使用微信支付平台证书,验证服务器应答的真实性和完整性。
170+
在 API 请求过程中,客户端需使用微信支付平台证书,验证服务器应答的真实性和完整性。
171171
在 v0.2.3 版本,我们加入了自动更新平台证书的配置类 `RSAAutoCertificateConfig`
172172

173173
```java

‎buildSrc/src/main/groovy/common.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
id "jacoco"
88
}
99

10-
version "0.2.3"
10+
version "0.2.4"
1111
group "com.github.wechatpay-apiv3"
1212
compileJava.options.encoding = "UTF-8"
1313
compileTestJava.options.encoding = "UTF-8"

0 commit comments

Comments
 (0)
Please sign in to comment.