Skip to content

Commit d90c449

Browse files
authored
Merge pull request #6224 from woocommerce/issue/6033-stripe-6-2-0
[Mobile Payments] Bump minimum Stripe extension version to 6.2.0 for IPP
2 parents 3a68213 + 9b03f5f commit d90c449

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- [*] Reviews: Fixed crash on iPad when tapping the More button. [https://github.com/woocommerce/woocommerce-ios/pull/6187]
99
- [*] In-Person Payments: Remove Stripe from Experimental Features as it is always enabled now. [https://github.com/woocommerce/woocommerce-ios/pull/6205]
1010
- [*] Disabled unneccesary selection of the "Refund via" row on the Refund Confirmation screen [https://github.com/woocommerce/woocommerce-ios/pull/6198]
11+
- [*] Increased minimum version of Stripe extension for In-Person Payments to 6.2.0 [https://github.com/woocommerce/woocommerce-ios/pull/xxxx]
1112

1213
8.5
1314
-----

WooCommerce/WooCommerceTests/ViewRelated/CardPresentPayments/CardPresentPaymentsOnboardingUseCaseTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -663,8 +663,8 @@ private extension CardPresentPaymentsOnboardingUseCaseTests {
663663
}
664664

665665
enum StripePluginVersion: String {
666-
case minimumSupportedVersion = "6.1.0" // Should match `CardPresentPaymentsOnboardingState` `minimumSupportedPluginVersion`
667-
case unsupportedVersion = "5.8.1"
666+
case minimumSupportedVersion = "6.2.0" // Should match `CardPresentPaymentsOnboardingState` `minimumSupportedPluginVersion`
667+
case unsupportedVersion = "6.1.0"
668668
}
669669

670670
}

Yosemite/Yosemite/Model/Enums/CardPresentPaymentsOnboardingState.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public enum CardPresentPaymentsPlugins: Equatable, CaseIterable {
121121
case .wcPay:
122122
return "3.2.1"
123123
case .stripe:
124-
return "6.1.0"
124+
return "6.2.0"
125125
}
126126
}
127127
}

0 commit comments

Comments
 (0)