diff --git a/CHANGELOG b/CHANGELOG index fb6642f093..5ae5da10bd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/Stripe.podspec b/Stripe.podspec index 8fc8f0166c..17c442ec2b 100644 --- a/Stripe.podspec +++ b/Stripe.podspec @@ -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 diff --git a/Stripe/Info.plist b/Stripe/Info.plist index d1e255f517..bfbcef8b0d 100644 --- a/Stripe/Info.plist +++ b/Stripe/Info.plist @@ -15,7 +15,7 @@ CFBundleSignature ???? CFBundleVersion - 6.0.0 + 6.0.1 NSPrincipalClass CFBundleExecutable diff --git a/Stripe/PublicHeaders/STPAPIClient.h b/Stripe/PublicHeaders/STPAPIClient.h index d921b3adda..5fbfb0dca9 100644 --- a/Stripe/PublicHeaders/STPAPIClient.h +++ b/Stripe/PublicHeaders/STPAPIClient.h @@ -8,7 +8,7 @@ #import -static NSString *const __nonnull STPSDKVersion = @"6.0.0"; +static NSString *const __nonnull STPSDKVersion = @"6.0.1"; @class STPBankAccount, STPBankAccountParams, STPCard, STPCardParams, STPToken; diff --git a/VERSION b/VERSION index f4965a313a..6d54bbd775 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.0.0 \ No newline at end of file +6.0.1 \ No newline at end of file