From 256dc786e24d6048d9077f9ab132b203e34697f4 Mon Sep 17 00:00:00 2001 From: davidme-stripe <52758633+davidme-stripe@users.noreply.github.com> Date: Mon, 12 Feb 2024 14:08:34 -0800 Subject: [PATCH] Release version 23.22.0 (#3283) - [x] Verify CHANGELOG is updated with any new features or breaking changes (be thorough when reviewing commit history) - [x] Verify MIGRATING is updated (if necessary). - [x] Verify the following files are updated to use the new version string: - [x] Version.xcconfig - [x] All *.podspec files - [x] StripeAPIConfiguration+Version.swift - [x] If new directories were added, verify they have been added to the appropriate `*.podspec` "files" section. --- BuildConfigurations/Version.xcconfig | 2 +- CHANGELOG.md | 8 ++------ Stripe.podspec | 2 +- StripeApplePay.podspec | 2 +- StripeCameraCore.podspec | 2 +- StripeCardScan.podspec | 2 +- StripeCore.podspec | 2 +- .../API Bindings/StripeAPIConfiguration+Version.swift | 2 +- StripeFinancialConnections.podspec | 2 +- StripeIdentity.podspec | 2 +- StripePaymentSheet.podspec | 2 +- StripePayments.podspec | 2 +- StripePaymentsUI.podspec | 2 +- StripeUICore.podspec | 2 +- VERSION | 2 +- 15 files changed, 16 insertions(+), 20 deletions(-) diff --git a/BuildConfigurations/Version.xcconfig b/BuildConfigurations/Version.xcconfig index 36a13c05e0c..f18077436dd 100644 --- a/BuildConfigurations/Version.xcconfig +++ b/BuildConfigurations/Version.xcconfig @@ -6,4 +6,4 @@ // Instead, edit the `VERSION` file and run `ci_scripts/update_version.sh` // -CURRENT_PROJECT_VERSION=23.21.2 +CURRENT_PROJECT_VERSION=23.22.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fe972e6994..36165f2a004 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,8 @@ -## x.x.x x-x-x +## 23.22.0 2024-02-12 ### PaymentSheet * [Changed] The separator text under the Apple Pay button from "Or pay with a card" to "Or use a card" when using a SetupIntent. - -### Payments -* [Added] Support for CVC recollection PaymentSheet and PaymentSheet.FlowController (client-side confirmation) - -### PaymentSheet * [Fixed] Fixed a bug where deleting the last saved payment method in PaymentSheet wouldn't automatically transition to the "Add a payment method" screen. +* [Added] Support for CVC recollection in PaymentSheet and PaymentSheet.FlowController (client-side confirmation) ## 23.21.2 2024-02-05 ### Payments diff --git a/Stripe.podspec b/Stripe.podspec index d6b7bec2e00..33c03b748bf 100644 --- a/Stripe.podspec +++ b/Stripe.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'Accept online payments using Stripe.' s.license = { :type => 'MIT', :file => 'LICENSE' } diff --git a/StripeApplePay.podspec b/StripeApplePay.podspec index e8566bc6cb1..d16105ab1f9 100644 --- a/StripeApplePay.podspec +++ b/StripeApplePay.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'StripeApplePay is a lightweight Apple Pay SDK intended for building App Clips '\ 'or other size-constrained apps.' diff --git a/StripeCameraCore.podspec b/StripeCameraCore.podspec index ebf156d0946..2cdeaf11be1 100644 --- a/StripeCameraCore.podspec +++ b/StripeCameraCore.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'StripeCameraCore contains shared infrastructure used by Stripe pods. '\ 'It is not meant to be used without other Stripe pods.' diff --git a/StripeCardScan.podspec b/StripeCardScan.podspec index 5f7705acd8c..ec78b97191e 100644 --- a/StripeCardScan.podspec +++ b/StripeCardScan.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'Scan credit and debit cards to verify that they\'re genuine' s.license = { :type => 'MIT', :file => 'LICENSE' } diff --git a/StripeCore.podspec b/StripeCore.podspec index 8ecd1fe70da..e2dc66bf284 100644 --- a/StripeCore.podspec +++ b/StripeCore.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'StripeCore contains shared infrastructure used by all Stripe pods. '\ 'It is not meant to be used without other Stripe pods.' diff --git a/StripeCore/StripeCore/Source/API Bindings/StripeAPIConfiguration+Version.swift b/StripeCore/StripeCore/Source/API Bindings/StripeAPIConfiguration+Version.swift index af7ed0651a2..043b720d8ed 100644 --- a/StripeCore/StripeCore/Source/API Bindings/StripeAPIConfiguration+Version.swift +++ b/StripeCore/StripeCore/Source/API Bindings/StripeAPIConfiguration+Version.swift @@ -10,7 +10,7 @@ import Foundation extension StripeAPIConfiguration { /// The current version of this library. - public static let STPSDKVersion = "23.21.2" + public static let STPSDKVersion = "23.22.0" // NOTE: `STPSDKVersion` must be a hard-coded static string instead of // dynamically generated from the bundle's `CFBundleShortVersionString` to diff --git a/StripeFinancialConnections.podspec b/StripeFinancialConnections.podspec index a6354fd7fce..f19c953bd8f 100644 --- a/StripeFinancialConnections.podspec +++ b/StripeFinancialConnections.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'Securely connect financial accounts to Stripe\'s merchant account.' s.license = { :type => 'MIT', :file => 'LICENSE' } diff --git a/StripeIdentity.podspec b/StripeIdentity.podspec index 28ad0e1e074..fef2ad0e7d2 100644 --- a/StripeIdentity.podspec +++ b/StripeIdentity.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'Securely capture ID documents and selfies on iOS for use with Stripe\'s Identity API to confirm the identity of global users.' s.license = { :type => 'MIT', :file => 'LICENSE' } diff --git a/StripePaymentSheet.podspec b/StripePaymentSheet.podspec index 7f49b483886..8ca1a0dd462 100644 --- a/StripePaymentSheet.podspec +++ b/StripePaymentSheet.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = "Stripe's prebuilt payment UI." s.license = { type: 'MIT', file: 'LICENSE' } diff --git a/StripePayments.podspec b/StripePayments.podspec index f0afaad4bfd..4cdd5819ad1 100644 --- a/StripePayments.podspec +++ b/StripePayments.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'Bindings for the Stripe Payments API.' s.license = { type: 'MIT', file: 'LICENSE' } diff --git a/StripePaymentsUI.podspec b/StripePaymentsUI.podspec index 4755d374e2f..5a95e2a2ce0 100644 --- a/StripePaymentsUI.podspec +++ b/StripePaymentsUI.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'UI elements and API bindings for building a custom payment flow using Stripe.' s.license = { type: 'MIT', file: 'LICENSE' } diff --git a/StripeUICore.podspec b/StripeUICore.podspec index 2a34bcefa31..8fb64f4a2f0 100644 --- a/StripeUICore.podspec +++ b/StripeUICore.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # Do not update s.version directly. # Instead, update the VERSION file and run ./ci_scripts/update_version.sh - s.version = '23.21.2' + s.version = '23.22.0' s.summary = 'StripeUICore contains shared infrastructure used by all Stripe pods. '\ 'It is not meant to be used without other Stripe pods.' diff --git a/VERSION b/VERSION index b90a3305d8d..75d7209b45a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -23.21.2 \ No newline at end of file +23.22.0 \ No newline at end of file