Skip to content
This repository has been archived by the owner on Jan 12, 2019. It is now read-only.

Commit

Permalink
Release 3.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Goldman committed Nov 5, 2014
1 parent 6a6742b commit 88c382e
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CardIO.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'CardIO'
spec.version = '3.10.0'
spec.version = '3.10.1'
spec.license = { type: 'MIT', file: 'LICENSE.md' }
spec.homepage = 'https://www.card.io'
spec.authors = { 'CardIO' => '[email protected]' }
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIO.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIO.h
// Version 3.10.0
// Version 3.10.1
//
// Copyright (c) 2011-2014 PayPal. All rights reserved.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIOCreditCardInfo.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOCreditCardInfo.h
// Version 3.10.0
// Version 3.10.1
//
// Copyright (c) 2011-2014 PayPal. All rights reserved.
//
Expand Down
11 changes: 9 additions & 2 deletions CardIO/CardIOPaymentViewController.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOPaymentViewController.h
// Version 3.10.0
// Version 3.10.1
//
// Copyright (c) 2011-2014 PayPal. All rights reserved.
//
Expand Down Expand Up @@ -135,6 +135,13 @@
/// @return Human-readable version of this library.
+ (NSString *)libraryVersion;

/// Previous versions of card.io provided an informative message when the user first launched card.io.

#pragma mark - Deprecated properties

/// Previous versions of card.io (prior to 3.2.3) provided an informative message when the user first launched card.io.
@property(nonatomic, assign, readwrite) BOOL showsFirstUseAlert __attribute__((deprecated("The former first-time alert is no more.")));

/// Previous versions of card.io (prior to 3.10.0) required you to obtain an "application token" from the card.io website.
@property(nonatomic, copy, readwrite) NSString *appToken __attribute__((deprecated("The former appToken is no longer required.")));

@end
2 changes: 1 addition & 1 deletion CardIO/CardIOPaymentViewControllerDelegate.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOPaymentViewControllerDelegate.h
// Version 3.10.0
// Version 3.10.1
//
// Copyright (c) 2011-2014 PayPal. All rights reserved.
//
Expand Down
8 changes: 7 additions & 1 deletion CardIO/CardIOView.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOView.h
// Version 3.10.0
// Version 3.10.1
//
// Copyright (c) 2011-2014 PayPal. All rights reserved.
//
Expand Down Expand Up @@ -78,4 +78,10 @@
/// You might want to use this, for example, when adjusting your view controller's view layout.
@property(nonatomic, assign, readonly) CGRect cameraPreviewFrame;


#pragma mark - Deprecated properties

/// Previous versions of card.io (prior to 3.10.0) required you to obtain an "application token" from the card.io website.
@property(nonatomic, copy, readwrite) NSString *appToken __attribute__((deprecated("The former appToken is no longer required.")));

@end
2 changes: 1 addition & 1 deletion CardIO/CardIOViewDelegate.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOViewDelegate.h
// Version 3.10.0
// Version 3.10.1
//
// Copyright (c) 2011-2014 PayPal. All rights reserved.
//
Expand Down
Binary file modified CardIO/libCardIO.a
Binary file not shown.
6 changes: 6 additions & 0 deletions release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
card.io iOS SDK release notes
=============================

3.10.1 (Wed 11/5/2014)

* Restore App Token as a deprecated property, so that existing card.io integrations will continue to build without modification.

--

3.10.0 (Thu 10/2/2014)

* Eliminate App Token. Developers no longer need to sign up on the card.io site before using card.io.
Expand Down

0 comments on commit 88c382e

Please sign in to comment.