Skip to content

Commit 9937154

Browse files
chore: bumped versions to 6.6.1
1 parent 6262723 commit 9937154

3 files changed

Lines changed: 29 additions & 29 deletions

File tree

README-zh.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ SDK 已发布至 [Maven Central](https://repo1.maven.org/maven2/io/github/airwal
112112
```groovy
113113
dependencies {
114114
// 必须
115-
implementation 'io.github.airwallex:payment:6.6.0'
115+
implementation 'io.github.airwallex:payment:6.6.1'
116116
// 按需添加支付方式
117-
implementation 'io.github.airwallex:payment-card:6.6.0'
118-
implementation 'io.github.airwallex:payment-redirect:6.6.0'
119-
implementation 'io.github.airwallex:payment-wechat:6.6.0'
120-
implementation 'io.github.airwallex:payment-googlepay:6.6.0'
117+
implementation 'io.github.airwallex:payment-card:6.6.1'
118+
implementation 'io.github.airwallex:payment-redirect:6.6.1'
119+
implementation 'io.github.airwallex:payment-wechat:6.6.1'
120+
implementation 'io.github.airwallex:payment-googlepay:6.6.1'
121121
}
122122
```
123123

@@ -493,13 +493,13 @@ Airwallex SDK 提供 `PaymentElement` - 一个灵活的组件,允许你将支
493493
```groovy
494494
dependencies {
495495
// 核心模块(必需)
496-
implementation 'io.github.airwallex:payment:6.6.0'
496+
implementation 'io.github.airwallex:payment:6.6.1'
497497
498498
// 添加你想要支持的支付方式
499-
implementation 'io.github.airwallex:payment-card:6.6.0'
500-
implementation 'io.github.airwallex:payment-redirect:6.6.0'
501-
implementation 'io.github.airwallex:payment-wechat:6.6.0'
502-
implementation 'io.github.airwallex:payment-googlepay:6.6.0'
499+
implementation 'io.github.airwallex:payment-card:6.6.1'
500+
implementation 'io.github.airwallex:payment-redirect:6.6.1'
501+
implementation 'io.github.airwallex:payment-wechat:6.6.1'
502+
implementation 'io.github.airwallex:payment-googlepay:6.6.1'
503503
}
504504
```
505505

@@ -858,11 +858,11 @@ SDK 支持 Android API 21 及以上。
858858
```groovy
859859
dependencies {
860860
// 必须
861-
implementation 'io.github.airwallex:payment-components-core:6.6.0'
861+
implementation 'io.github.airwallex:payment-components-core:6.6.1'
862862
// 按需添加支付方式
863-
implementation 'io.github.airwallex:payment-card:6.6.0'
864-
implementation 'io.github.airwallex:payment-googlepay:6.6.0'
865-
implementation 'io.github.airwallex:payment-redirect:6.6.0'
863+
implementation 'io.github.airwallex:payment-card:6.6.1'
864+
implementation 'io.github.airwallex:payment-googlepay:6.6.1'
865+
implementation 'io.github.airwallex:payment-redirect:6.6.1'
866866
}
867867
```
868868

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ Add the following dependencies to your app-level `build.gradle`:
108108
```groovy
109109
dependencies {
110110
// Core module (required)
111-
implementation 'io.github.airwallex:payment:6.6.0'
111+
implementation 'io.github.airwallex:payment:6.6.1'
112112
113113
// Add payment methods you want to support
114-
implementation 'io.github.airwallex:payment-card:6.6.0' // Card payments
115-
implementation 'io.github.airwallex:payment-redirect:6.6.0' // Redirect-based payments
116-
implementation 'io.github.airwallex:payment-wechat:6.6.0' // WeChat Pay
117-
implementation 'io.github.airwallex:payment-googlepay:6.6.0' // Google Pay
114+
implementation 'io.github.airwallex:payment-card:6.6.1' // Card payments
115+
implementation 'io.github.airwallex:payment-redirect:6.6.1' // Redirect-based payments
116+
implementation 'io.github.airwallex:payment-wechat:6.6.1' // WeChat Pay
117+
implementation 'io.github.airwallex:payment-googlepay:6.6.1' // Google Pay
118118
}
119119
```
120120

@@ -537,13 +537,13 @@ Add the same dependencies as Hosted Payment Page Integration:
537537
```groovy
538538
dependencies {
539539
// Core module (required)
540-
implementation 'io.github.airwallex:payment:6.6.0'
540+
implementation 'io.github.airwallex:payment:6.6.1'
541541
542542
// Add payment methods you want to support
543-
implementation 'io.github.airwallex:payment-card:6.6.0'
544-
implementation 'io.github.airwallex:payment-redirect:6.6.0'
545-
implementation 'io.github.airwallex:payment-wechat:6.6.0'
546-
implementation 'io.github.airwallex:payment-googlepay:6.6.0'
543+
implementation 'io.github.airwallex:payment-card:6.6.1'
544+
implementation 'io.github.airwallex:payment-redirect:6.6.1'
545+
implementation 'io.github.airwallex:payment-wechat:6.6.1'
546+
implementation 'io.github.airwallex:payment-googlepay:6.6.1'
547547
}
548548
```
549549

@@ -899,12 +899,12 @@ To install the SDK, in your app-level `build.gradle`, add the following:
899899
```groovy
900900
dependencies {
901901
// It's required
902-
implementation 'io.github.airwallex:payment-components-core:6.6.0'
902+
implementation 'io.github.airwallex:payment-components-core:6.6.1'
903903
904904
// Select the payment method you want to support, ignore the components you don't need.
905-
implementation 'io.github.airwallex:payment-card:6.6.0'//only support card
906-
implementation 'io.github.airwallex:payment-googlepay:6.6.0'//only support google pay
907-
implementation 'io.github.airwallex:payment-redirect:6.6.0'//only support redirect
905+
implementation 'io.github.airwallex:payment-card:6.6.1'//only support card
906+
implementation 'io.github.airwallex:payment-googlepay:6.6.1'//only support google pay
907+
implementation 'io.github.airwallex:payment-redirect:6.6.1'//only support redirect
908908
}
909909
```
910910

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ allprojects {
4747

4848

4949
// Update the version field when a new version is released
50-
version = '6.6.0'
50+
version = '6.6.1'
5151

5252
ext {
5353
compileSdkVersion = 36

0 commit comments

Comments
 (0)