Skip to content

Commit

Permalink
v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Cohen committed May 22, 2014
1 parent e228806 commit 28e379c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Please also see the PaymentKit changelog: https://github.com/stripe/PaymentKit/blob/master/CHANGELOG

=== 1.1.4 2014-05-22
* Fixed an issue where tokenization requests would fail under iOS 6 due to SSL certificate verification

=== 1.1.3 2014-05-12
* Send some basic version and device details with requests for debugging.
* Added -description to STPToken
Expand Down
4 changes: 2 additions & 2 deletions Stripe.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "Stripe"
s.version = "1.1.3"
s.version = "1.1.4"
s.summary = "Stripe is a web-based API for accepting payments online."
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = "https://stripe.com"
s.author = { "Saikat Chakrabarti" => "[email protected]" }
s.source = { :git => "https://github.com/stripe/stripe-ios.git", :tag => "v1.1.3"}
s.source = { :git => "https://github.com/stripe/stripe-ios.git", :tag => "v1.1.4"}
s.source_files = 'Stripe/*.{h,m}'
s.public_header_files = 'Stripe/*.h'
s.platform = :ios
Expand Down
2 changes: 1 addition & 1 deletion Stripe/Stripe.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ + (void)handleTokenResponse:(NSURLResponse *)response body:(NSData *)body error:
+ (NSURL *)apiURLWithPublishableKey:(NSString *)publishableKey;
@end

NSString *const kStripeiOSVersion = @"1.1.3";
NSString *const kStripeiOSVersion = @"1.1.4";

@implementation Stripe
static NSString *defaultKey;
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(See Stripe.m for up-to-date version)
(See Stripe.m or Stripe.podspec for up-to-date version)

0 comments on commit 28e379c

Please sign in to comment.