This commit is contained in:
Jack Flintermann 2015-10-21 00:07:19 -04:00
parent d65dc2f52f
commit 1f62fbd212
5 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,6 @@
== 6.0.0 2015-10-19
* Splits logic in STPCard into 2 classes - STPCard and STPCardParams. STPCardParams is for making requests to the Stripe API, while STPCard represents the response (you'll almost certainly want just to replace any usage of STPCard in your app with STPCardParams). This also applies to STPBankAccount and the newly-created STPBankAccountParams.
* Version 6.0.1 fixes a minor Cocoapods issue.
== 5.1.0 2015-08-17
* Adds STPPaymentCardTextField, a new version of github.com/stripe/PaymentKit featuring many bugfixes. It's useful if you need a pre-built credit card entry form.

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Stripe'
s.version = '6.0.0'
s.version = '6.0.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'
@ -18,7 +18,7 @@ Pod::Spec.new do |s|
ss.public_header_files = 'Stripe/PublicHeaders/*.h', 'Stripe/PublicHeaders/Checkout/*.h'
ss.ios.public_header_files = 'Stripe/PublicHeaders/ApplePay/*.h', 'Stripe/PublicHeaders/UI/*.h'
ss.source_files = 'Stripe/PublicHeaders/*.h', 'Stripe/*.{h,m}', 'Stripe/PublicHeaders/Checkout/*.h', 'Stripe/Checkout/*.{h,m}'
ss.ios.source_files = 'Stripe/PublicHeaders/ApplePay/*.h', 'Stripe/ApplePay/*.{h,m}', 'Stripe/PublicHeaders/UI/*.h', 'Stripe/UI/*.{h,m}'
ss.ios.source_files = 'Stripe/PublicHeaders/ApplePay/*.h', 'Stripe/ApplePay/*.{h,m}', 'Stripe/PublicHeaders/UI/*.h', 'Stripe/UI/*.{h,m}', 'Stripe/Fabric/*'
ss.resources = 'Stripe/Resources/**/*'
end

View File

@ -15,7 +15,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>6.0.0</string>
<string>6.0.1</string>
<key>NSPrincipalClass</key>
<string></string>
<key>CFBundleExecutable</key>

View File

@ -8,7 +8,7 @@
#import <Foundation/Foundation.h>
static NSString *const __nonnull STPSDKVersion = @"6.0.0";
static NSString *const __nonnull STPSDKVersion = @"6.0.1";
@class STPBankAccount, STPBankAccountParams, STPCard, STPCardParams, STPToken;

View File

@ -1 +1 @@
6.0.0
6.0.1