Update versions

This commit is contained in:
David Estes 2020-10-23 11:48:53 -07:00
parent 89f4fcd2b5
commit 6cba05cb65
6 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,8 @@
## Migration Guides
### Migrating from versions < 20.1.1
* Cocoapods users must update to Cocoapods 1.10. (`gem update cocoapods`)
### Migrating from versions < 20.1.0
* Swift Package Manager users may need to remove and re-add Stripe from the `Frameworks, Libraries, and Embedded Content` section of your target's settings after updating.
* Swift Package Manager users with Xcode 12.0 may need to use a [workaround](https://github.com/stripe/stripe-ios/issues/1673) for a code signing issue. This is fixed in Xcode 12.2.

View File

@ -58,7 +58,7 @@ From left to right: [STPAddCardViewController](https://stripe.dev/stripe-ios/doc
We support Cocoapods, Swift Package Manager (with [caveats on Xcode 12.0](https://github.com/stripe/stripe-ios/issues/1673)), and Carthage. If you link the library manually, use a version from our [releases](https://github.com/stripe/stripe-ios/releases) page.
If you're reading this on GitHub.com, please make sure you are looking at the [tagged version](https://github.com/stripe/stripe-ios/tags) that corresponds to the release you have installed. Otherwise, the instructions and example code may be mismatched with your copy. You can read the latest tagged version of this README and browse the associated code on GitHub using
[this link](https://github.com/stripe/stripe-ios/tree/20.1.0).
[this link](https://github.com/stripe/stripe-ios/tree/20.1.1).
## Requirements
@ -76,11 +76,11 @@ Get started with our [📚 integration guides](https://stripe.com/docs/payments)
There are 3 example apps included in the repository:
- [UI Examples](https://github.com/stripe/stripe-ios/tree/20.1.0/Example/UI%20Examples).
- [UI Examples](https://github.com/stripe/stripe-ios/tree/20.1.1/Example/UI%20Examples).
- This example lets you quickly try out the SDK's prebuilt UI components using a mock backend—just build and run!
- [Basic Integration](https://github.com/stripe/stripe-ios/tree/20.1.0/Example/Basic%20Integration)
- [Basic Integration](https://github.com/stripe/stripe-ios/tree/20.1.1/Example/Basic%20Integration)
- This example demonstrates how to build a payment flow using our prebuilt UI component integration (`STPPaymentContext`).
- [Non-Card Payment Examples](https://github.com/stripe/stripe-ios/tree/20.1.0/Example/Non-Card%20Payment%20Examples)
- [Non-Card Payment Examples](https://github.com/stripe/stripe-ios/tree/20.1.1/Example/Non-Card%20Payment%20Examples)
- This example demonstrates how to use `STPAPIClient` to accept various non-card payment methods.
Check out [stripe-samples](https://github.com/stripe-samples/) for more, including:
@ -98,7 +98,7 @@ To add card scanning capabilities to our prebuilt UI components, set the `cardSc
<img src="https://user-images.githubusercontent.com/52758633/92628867-4d040200-f282-11ea-95d2-023d9a461d25.gif" width="222" height="458" alt="Card Scanning Demo" align="center">
</p>
Demo this in our [Basic Integration example app](https://github.com/stripe/stripe-ios/tree/20.1.0/Example/Basic%20Integration). When you run the example app on a device, you'll see a "Scan Card" button when adding a new card.
Demo this in our [Basic Integration example app](https://github.com/stripe/stripe-ios/tree/20.1.1/Example/Basic%20Integration). When you run the example app on a device, you'll see a "Scan Card" button when adding a new card.
This feature is currently in beta. Please file bugs on our [GitHub issues page](https://github.com/stripe/stripe-ios/issues).

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Stripe'
s.version = '20.1.0'
s.version = '20.1.1'
s.summary = 'Stripe is a web-based API for accepting payments online.'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://stripe.com/docs/mobile/ios'

View File

@ -13,11 +13,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>20.1.0</string>
<string>20.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>20.1.0</string>
<string>20.1.1</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>

View File

@ -18,7 +18,7 @@ NS_ASSUME_NONNULL_BEGIN
/**
The current version of this library.
*/
static NSString *const STPSDKVersion = @"20.1.0";
static NSString *const STPSDKVersion = @"20.1.1";
@class STPBankAccount, STPBankAccountParams, STPCard, STPCardParams, STPConnectAccountParams;
@class STPPaymentConfiguration, STPPaymentIntentParams, STPSourceParams, STPToken, STPPaymentMethodParams;

View File

@ -1 +1 @@
20.1.0
20.1.1