Update versions

This commit is contained in:
David Estes 2020-04-28 13:15:01 -07:00
parent ca7cef7cac
commit 6ea8e2d01d
6 changed files with 13 additions and 10 deletions

View File

@ -1,3 +1,6 @@
## 19.1.1 2020-04-28
* Add advancedFraudSignalsEnabled property [#1560](https://github.com/stripe/stripe-ios/pull/1560)
## 19.1.0 2020-04-15
* Relaxes need for dob for full name connect account (`STPConnectAccountIndividualParams`). [#1539](https://github.com/stripe/stripe-ios/pull/1539)
* Adds Chinese (Traditional) and Chinese (Hong Kong) localizations [#1536](https://github.com/stripe/stripe-ios/pull/1536)

View File

@ -58,7 +58,7 @@ From left to right: [STPAddCardViewController](https://stripe.dev/stripe-ios/doc
We recommend installing the Stripe iOS SDK using a package manager such as Cocoapods or 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/v19.1.0).
[this link](https://github.com/stripe/stripe-ios/tree/v19.1.1).
## Requirements
@ -75,11 +75,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/v19.1.0/Example/UI%20Examples).
- [UI Examples](https://github.com/stripe/stripe-ios/tree/v19.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/v19.1.0/Example/Basic%20Integration)
- [Basic Integration](https://github.com/stripe/stripe-ios/tree/v19.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/v19.1.0/Example/Non-Card%20Payment%20Examples)
- [Non-Card Payment Examples](https://github.com/stripe/stripe-ios/tree/v19.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:
@ -93,7 +93,7 @@ Check out [stripe-samples](https://github.com/stripe-samples/) for more, includi
To add card scanning capabilities to our prebuilt UI components, [install card.io](https://github.com/card-io/card.io-iOS-SDK#setup) alongside our SDK. You'll also need to set `NSCameraUsageDescription` in your application's plist, and provide a reason for accessing the camera (e.g. "To scan cards").
Demo this in our [Basic Integration example app](https://github.com/stripe/stripe-ios/tree/v19.1.0/Example/Basic&20Integration) by running `./install_cardio.rb`, which will download and install card.io in the project. Now, 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/v19.1.1/Example/Basic&20Integration) by running `./install_cardio.rb`, which will download and install card.io in the project. Now, when you run the example app on a device, you'll see a "Scan Card" button when adding a new card.
## Contributing

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Stripe'
s.version = '19.1.0'
s.version = '19.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>19.1.0</string>
<string>19.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>19.1.0</string>
<string>19.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 = @"19.1.0";
static NSString *const STPSDKVersion = @"19.1.1";
@class STPBankAccount, STPBankAccountParams, STPCard, STPCardParams, STPConnectAccountParams;
@class STPPaymentConfiguration, STPPaymentIntentParams, STPSourceParams, STPToken, STPPaymentMethodParams;

View File

@ -1 +1 @@
19.1.0
19.1.1