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

Commit

Permalink
Release 5.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Goldman committed May 19, 2015
1 parent 8a14009 commit 717a4a7
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 10 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 = '5.0.4'
spec.version = '5.0.5'
spec.license = { type: 'MIT', file: 'LICENSE.md' }
spec.homepage = 'https://www.card.io'
spec.authors = { 'CardIO' => 'support@paypal.com' }
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 5.0.4
// Version 5.0.5
//
// See the file "LICENSE.md" for the full license governing this code.
//
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 5.0.4
// Version 5.0.5
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIODetectionMode.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIODetectionMode.h
// Version 5.0.4
// Version 5.0.5
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIOPaymentViewController.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOPaymentViewController.h
// Version 5.0.4
// Version 5.0.5
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
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 5.0.4
// Version 5.0.5
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIOUtilities.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOUtilities.h
// Version 5.0.4
// Version 5.0.5
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIOView.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOView.h
// Version 5.0.4
// Version 5.0.5
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
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 5.0.4
// Version 5.0.5
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
Binary file modified CardIO/libCardIO.a
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SampleApp-Swift/SampleApp-Swift/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ViewController: UIViewController, CardIOPaymentViewControllerDelegate {
func userDidProvideCreditCardInfo(cardInfo: CardIOCreditCardInfo!, inPaymentViewController paymentViewController: CardIOPaymentViewController!) {
if let info = cardInfo {
let str = NSString(format: "Received card info.\n Number: %@\n expiry: %02lu/%lu\n cvv: %@.", info.redactedCardNumber, info.expiryMonth, info.expiryYear, info.cvv)
resultLabel.text = str
resultLabel.text = str as String
}
paymentViewController?.dismissViewControllerAnimated(true, completion: nil)
}
Expand Down
10 changes: 10 additions & 0 deletions release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
card.io iOS SDK release notes
=============================

5.0.5 (Tue 5/19/2015)

* Update Chinese translations for "CVV".
(https://github.com/paypal/PayPal-iOS-SDK/issues/278)
* Update project and sample apps for Xcode 6.3, but
build SDK with Xcode 6.2 this one last time to prevent
compatibility issues for clients still using Xcode 6.2.

--

5.0.4 (Tue 4/14/2015)

* Check existing video permissions before presenting camera view.
Expand Down

0 comments on commit 717a4a7

Please sign in to comment.