We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd4d263 commit 24c32a1Copy full SHA for 24c32a1
3 files changed
.github/workflows/go.yml
@@ -42,7 +42,7 @@ jobs:
42
go-version: "1.19"
43
- name: staticcheck
44
run: |
45
- go install honnef.co/go/tools/cmd/staticcheck@latest &&
+ go install honnef.co/go/tools/cmd/staticcheck@v0.4.7 &&
46
$HOME/go/bin/staticcheck ./...
47
- name: Revive Action
48
uses: morphy2k/revive-action@v2.1.1
CHANGELOG.md
@@ -1,5 +1,12 @@
1
# Changelog
2
3
+## [0.2.20] - 2024-08-20
4
+
5
+### Added
6
7
++ 支持使用微信支付公钥验证微信支付签名
8
++ 支持商家转账到零钱的 `notify_url`
9
10
## [0.2.18] - 2023-10-11
11
12
### Changed
core/consts/const.go
@@ -13,7 +13,7 @@ const (
13
14
// SDK 相关信息
15
const (
16
- Version = "0.2.18" // SDK 版本
+ Version = "0.2.20" // SDK 版本
17
UserAgentFormat = "WechatPay-Go/%s (%s) GO/%s" // UserAgent中的信息
18
)
19
0 commit comments