docs: 修改1.0.5相关的注释

This commit is contained in:
felord.cn
2021-02-02 10:40:44 +08:00
parent 145f182641
commit bc9496e1ad
8 changed files with 22 additions and 12 deletions

View File

@@ -11,7 +11,7 @@
<dependency> <dependency>
<groupId>cn.felord</groupId> <groupId>cn.felord</groupId>
<artifactId>payment-spring-boot-starter</artifactId> <artifactId>payment-spring-boot-starter</artifactId>
<version>1.0.4.RELEASE</version> <version>1.0.5.RELEASE</version>
</dependency> </dependency>
``` ```

View File

@@ -34,7 +34,7 @@
<dependency> <dependency>
<groupId>cn.felord</groupId> <groupId>cn.felord</groupId>
<artifactId>payment-spring-boot-starter</artifactId> <artifactId>payment-spring-boot-starter</artifactId>
<version>1.0.4.RELEASE</version> <version>1.0.5.RELEASE</version>
</dependency> </dependency>
``` ```
## 采用技术 ## 采用技术

View File

@@ -1,3 +1,13 @@
## 1.0.5.RELEASE
- 微信支付
- feat:增加V2 退款接口
- feat:增加V2 企业付款到零钱接口
- feat:增加V2 红包接口
- refactor:优化了一些底层功能
- refactor:整了支付配置Spring注入的顺序
- refactor:JCE由SPI提供不再使用JDK内置
- fix: 关单接口调用异常[(#4)](https://github.com/NotFound403/payment-spring-boot/issues/4)
## 1.0.4.RELEASE ## 1.0.4.RELEASE
- 微信支付 - 微信支付
- feat: 增加微信支付商家券相关接口`WechatMarketingBusiFavorApi`,商家券请阅读相关产品文档。 - feat: 增加微信支付商家券相关接口`WechatMarketingBusiFavorApi`,商家券请阅读相关产品文档。

View File

@@ -4,7 +4,7 @@
<dependency> <dependency>
<groupId>cn.felord</groupId> <groupId>cn.felord</groupId>
<artifactId>payment-spring-boot-starter</artifactId> <artifactId>payment-spring-boot-starter</artifactId>
<version>1.0.4.RELEASE</version> <version>1.0.5.RELEASE</version>
</dependency> </dependency>
``` ```
> 基于 **Spring Boot 2.x** > 基于 **Spring Boot 2.x**
@@ -50,7 +50,7 @@ wechat:
<tentantID>: <tentantID>:
# 应用appId 必填 # 应用appId 必填
app-id: xxxxxxxx app-id: xxxxxxxx
# api 密钥 可不 # v2 api 密钥 1.0.5版本以后如果用到V2的接口时必
app-secret: xxxxxxxxxxx app-secret: xxxxxxxxxxx
# api v3 密钥 必填 # api v3 密钥 必填
app-v3-secret: xxxxxxxx app-v3-secret: xxxxxxxx

View File

@@ -5,11 +5,11 @@
<parent> <parent>
<groupId>cn.felord</groupId> <groupId>cn.felord</groupId>
<artifactId>payment-spring-boot</artifactId> <artifactId>payment-spring-boot</artifactId>
<version>1.0.5.SNAPSHOT</version> <version>1.0.5.RELEASE</version>
</parent> </parent>
<artifactId>payment-spring-boot-autoconfigure</artifactId> <artifactId>payment-spring-boot-autoconfigure</artifactId>
<version>1.0.5.SNAPSHOT</version> <version>1.0.5.RELEASE</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -23,10 +23,10 @@ import com.fasterxml.jackson.databind.JsonNode;
import org.springframework.http.HttpMethod; import org.springframework.http.HttpMethod;
/** /**
* The type Wechat pay refund api. * 退款相关API.
* *
* @author felord.cn * @author felord.cn
* @since 1.0.4.RELEASE * @since 1.0.5.RELEASE
*/ */
public class WechatPayRefundApi { public class WechatPayRefundApi {
private final WechatV2Client wechatV2Client; private final WechatV2Client wechatV2Client;

View File

@@ -5,11 +5,11 @@
<parent> <parent>
<groupId>cn.felord</groupId> <groupId>cn.felord</groupId>
<artifactId>payment-spring-boot</artifactId> <artifactId>payment-spring-boot</artifactId>
<version>1.0.5.SNAPSHOT</version> <version>1.0.5.RELEASE</version>
</parent> </parent>
<artifactId>payment-spring-boot-starter</artifactId> <artifactId>payment-spring-boot-starter</artifactId>
<version>1.0.5.SNAPSHOT</version> <version>1.0.5.RELEASE</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>cn.felord</groupId> <groupId>cn.felord</groupId>
<artifactId>payment-spring-boot</artifactId> <artifactId>payment-spring-boot</artifactId>
<version>1.0.5.SNAPSHOT</version> <version>1.0.5.RELEASE</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
@@ -30,7 +30,7 @@
</developers> </developers>
<scm> <scm>
<tag>payment-spring-boot-1.0.4.RELEASE</tag> <tag>payment-spring-boot-1.0.5.RELEASE</tag>
<url>https://github.com/NotFound403/payment-spring-boot</url> <url>https://github.com/NotFound403/payment-spring-boot</url>
<connection>scm:git:https://github.com/NotFound403/payment-spring-boot.git</connection> <connection>scm:git:https://github.com/NotFound403/payment-spring-boot.git</connection>
<developerConnection>scm:git:https://github.com/NotFound403/payment-spring-boot.git</developerConnection> <developerConnection>scm:git:https://github.com/NotFound403/payment-spring-boot.git</developerConnection>