Skip to content

Commit f16f056

Browse files
Merge pull request stripe#1259 from stripe/yuki-release-v16.0.2
Release v16.0.2
2 parents c5159cf + 2dbc701 commit f16f056

File tree

273 files changed

+2406
-11355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+2406
-11355
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
## ??
1+
## 16.0.2 2019-07-29
2+
* Adds API to let users set a default payment option for Standard Integration [#1252](https://github.com/stripe/stripe-ios/pull/1252)
23
* Removes querying the Advertising Identifier (IDFA).
34
* Adds customizable UIStatusBarStyle to STDSUICustomization.
45

56
## 16.0.1 2019-07-25
6-
* Migrates Stripe3DS2.framework to libStripe3DS2.a, resolving an issue with App Store validation. [#1246]( https://github.com/stripe/stripe-ios/pull/1246)
7+
* Migrates Stripe3DS2.framework to libStripe3DS2.a, resolving an issue with App Store validation. [#1246](https://github.com/stripe/stripe-ios/pull/1246)
78
* Fixes a crash in STPPaymentHandler. [#1244](https://github.com/stripe/stripe-ios/pull/1244)
89

910
## 16.0.0 2019-07-18

Example/Custom Integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ For more details on using Sources, see https://stripe.com/docs/mobile/ios/source
1010
2. Execute `./setup.sh` from the root of the repository to build the necessary dependencies
1111
3. Open `./Stripe.xcworkspace` (not `./Stripe.xcodeproj`) with Xcode
1212
4. Fill in the `stripePublishableKey` constant in `./Example/Custom Integration/Constants.m` with your test "Publishable key" from Stripe. This key should start with `pk_test`.
13-
5. Head to [example-ios-backend](https://github.com/stripe/example-ios-backend/tree/v16.0.1) and click "Deploy to Heroku". Provide your Stripe test "Secret key" as the `STRIPE_TEST_SECRET_KEY` environment variable. This key should start with `sk_test`.
13+
5. Head to [example-ios-backend](https://github.com/stripe/example-ios-backend/tree/v16.0.0) and click "Deploy to Heroku". Provide your Stripe test "Secret key" as the `STRIPE_TEST_SECRET_KEY` environment variable. This key should start with `sk_test`.
1414
6. Fill in the `backendBaseURL` constant in `Constants.m` with the app URL Heroku provides (e.g. "https://my-example-app.herokuapp.com")
1515

1616
After this is done, you can make test payments through the app and see them in your Stripe dashboard.

Example/Standard Integration/CheckoutViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CheckoutViewController: UIViewController, STPPaymentContextDelegate, STPAu
1616
let stripePublishableKey = ""
1717

1818
// 2) Next, optionally, to have this demo save your user's payment details, head to
19-
// https://github.com/stripe/example-ios-backend/tree/v16.0.1, click "Deploy to Heroku", and follow
19+
// https://github.com/stripe/example-ios-backend/tree/v16.0.0, click "Deploy to Heroku", and follow
2020
// the instructions (don't worry, it's free). Replace nil on the line below with your
2121
// Heroku URL (it looks like https://blazing-sunrise-1234.herokuapp.com ).
2222
let backendBaseURL: String? = nil

Example/Standard Integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ For a detailed guide, see https://stripe.com/docs/mobile/ios/standard
88
2. Execute `./setup.sh` from the root of the repository to build the necessary dependencies
99
3. Open `./Stripe.xcworkspace` (not `./Stripe.xcodeproj`) with Xcode
1010
4. Fill in the `stripePublishableKey` constant in `./Example/Standard Integration/CheckoutViewController.swift` with your test "Publishable key" from Stripe. This key should start with `pk_test`.
11-
5. Head to [example-ios-backend](https://github.com/stripe/example-ios-backend/tree/v16.0.1) and click "Deploy to Heroku". Provide your Stripe test "Secret key" as the `STRIPE_TEST_SECRET_KEY` environment variable. This key should start with `pk_test`.
11+
5. Head to [example-ios-backend](https://github.com/stripe/example-ios-backend/tree/v16.0.0) and click "Deploy to Heroku". Provide your Stripe test "Secret key" as the `STRIPE_TEST_SECRET_KEY` environment variable. This key should start with `pk_test`.
1212
6. Fill in the `backendBaseURL` constant in `./Example/Standard Integration/CheckoutViewController.swift` with the app URL Heroku provides (e.g. "https://my-example-app.herokuapp.com")
1313

1414
After this is done, you can make test payments through the app and see them in your Stripe dashboard.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The Stripe iOS SDK makes it quick and easy to build an excellent payment experie
2525
We recommend that you install the Stripe iOS SDK using a package manager such as [Cocoapods or Carthage](https://stripe.com/docs/mobile/ios#getting-started). If you prefer to link the library manually, please use a version from our [releases](https://github.com/stripe/stripe-ios/releases) page because we consider the master branch to be unstable.
2626

2727
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
28-
[this link](https://github.com/stripe/stripe-ios/tree/v16.0.1).
28+
[this link](https://github.com/stripe/stripe-ios/tree/v16.0.2).
2929

3030
## Requirements
3131

Stripe.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Stripe'
3-
s.version = '16.0.1'
3+
s.version = '16.0.2'
44
s.summary = 'Stripe is a web-based API for accepting payments online.'
55
s.license = { :type => 'MIT', :file => 'LICENSE' }
66
s.homepage = 'https://stripe.com/docs/mobile/ios'

Stripe/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
<key>CFBundlePackageType</key>
1414
<string>FMWK</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>16.0.1</string>
16+
<string>16.0.2</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleVersion</key>
20-
<string>16.0.1</string>
20+
<string>16.0.2</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

Stripe/PublicHeaders/STPAPIClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ NS_ASSUME_NONNULL_BEGIN
1818
/**
1919
The current version of this library.
2020
*/
21-
static NSString *const STPSDKVersion = @"16.0.1";
21+
static NSString *const STPSDKVersion = @"16.0.2";
2222

2323
@class STPBankAccount, STPBankAccountParams, STPCard, STPCardParams, STPConnectAccountParams;
2424
@class STPPaymentConfiguration, STPPaymentIntentParams, STPSourceParams, STPToken, STPPaymentMethodParams;

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.0.1
1+
16.0.2

docs/docs/Categories.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ <h4>Declaration</h4>
671671
</div>
672672
</div>
673673
<div class="slightly-smaller">
674-
<a href="https://github.com/stripe/stripe-ios/tree/v16.0.1/Stripe/PublicHeaders/StripeError.h#L157-L169">Show on GitHub</a>
674+
<a href="https://github.com/stripe/stripe-ios/tree/v16.0.2/Stripe/PublicHeaders/StripeError.h#L157-L169">Show on GitHub</a>
675675
</div>
676676
</section>
677677
</div>
@@ -708,7 +708,7 @@ <h4>Declaration</h4>
708708
</div>
709709
</div>
710710
<div class="slightly-smaller">
711-
<a href="https://github.com/stripe/stripe-ios/tree/v16.0.1/Stripe/PublicHeaders/UINavigationBar+Stripe_Theme.h#L19-L39">Show on GitHub</a>
711+
<a href="https://github.com/stripe/stripe-ios/tree/v16.0.2/Stripe/PublicHeaders/UINavigationBar+Stripe_Theme.h#L19-L39">Show on GitHub</a>
712712
</div>
713713
</section>
714714
</div>
@@ -721,7 +721,7 @@ <h4>Declaration</h4>
721721
</article>
722722
</div>
723723
<section class="footer">
724-
<p>&copy; 2019 <a class="link" href="https://stripe.com" target="_blank" rel="external">Stripe</a>. All rights reserved. (Last updated: 2019-07-25)</p>
724+
<p>&copy; 2019 <a class="link" href="https://stripe.com" target="_blank" rel="external">Stripe</a>. All rights reserved. (Last updated: 2019-07-29)</p>
725725
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.10.0</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
726726
</section>
727727
</body>

0 commit comments

Comments
 (0)