diff --git a/BuildConfigurations/Version.xcconfig b/BuildConfigurations/Version.xcconfig index 9186ed6df50..706fcb952a1 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.19.0 +CURRENT_PROJECT_VERSION=23.20.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b23d5b75a6..fd89523b6a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## X.Y.Z 2023-xx-yy +## 23.20.0 2023-12-18 ### PaymentSheet * [Added] Support for [card brand choice](https://stripe.com/docs/card-brand-choice). To set default preferred networks, use the new configuration option `PaymentSheet.Configuration.preferredNetworks`. * [Fixed] Fixed visionOS support in Swift Package Manager and Cocoapods. diff --git a/Stripe.podspec b/Stripe.podspec index 32348570f71..e4e41dd5f79 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.19.0' + s.version = '23.20.0' s.summary = 'Accept online payments using Stripe.' s.license = { :type => 'MIT', :file => 'LICENSE' } diff --git a/Stripe.xcworkspace/xcuserdata/porter.xcuserdatad/UserInterfaceState.xcuserstate b/Stripe.xcworkspace/xcuserdata/porter.xcuserdatad/UserInterfaceState.xcuserstate index 7199fdb622a..951c12e7612 100644 Binary files a/Stripe.xcworkspace/xcuserdata/porter.xcuserdatad/UserInterfaceState.xcuserstate and b/Stripe.xcworkspace/xcuserdata/porter.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/StripeApplePay.podspec b/StripeApplePay.podspec index 734ebffceff..e4db2071649 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.19.0' + s.version = '23.20.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 12a82a09265..9b84cc27ac5 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.19.0' + s.version = '23.20.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 22be0a91703..2e0741a5e5a 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.19.0' + s.version = '23.20.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 e0de0316133..cbed4cf5f6b 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.19.0' + s.version = '23.20.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 4ce56b4f7e1..2f84cecb215 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.19.0" + public static let STPSDKVersion = "23.20.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 7c5e522a53f..88f8a0f829e 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.19.0' + s.version = '23.20.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 b34125a5473..6c9e72b725e 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.19.0' + s.version = '23.20.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 8ea5559a220..e8957c09c14 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.19.0' + s.version = '23.20.0' s.summary = "Stripe's prebuilt payment UI." s.license = { type: 'MIT', file: 'LICENSE' } diff --git a/StripePayments.podspec b/StripePayments.podspec index 345f9837ca6..ee6ef419dc6 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.19.0' + s.version = '23.20.0' s.summary = 'Bindings for the Stripe Payments API.' s.license = { type: 'MIT', file: 'LICENSE' } diff --git a/StripePaymentsUI.podspec b/StripePaymentsUI.podspec index 5004886fac2..b256e51a532 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.19.0' + s.version = '23.20.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 a3cc7ccd0b3..a00bbf41b4e 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.19.0' + s.version = '23.20.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 2ebc3ff49fe..5432a6209a1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -23.19.0 \ No newline at end of file +23.20.0 \ No newline at end of file