Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.

Commit

Permalink
Update library to 2.0.1. A few very minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Goldman committed Feb 26, 2014
1 parent 195c80c commit d025c95
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 10 deletions.
3 changes: 1 addition & 2 deletions PayPalMobile/PayPalConfiguration.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// PayPalConfiguration.h
//
// Version 2.0.0
// Version 2.0.1
//
// Copyright (c) 2013, PayPal
// All rights reserved.
Expand All @@ -10,7 +10,6 @@
#import <Foundation/Foundation.h>

/// You use a PayPalConfiguration object to configure many aspects of how the SDK behaves.
/// The PayPalConfiguration class also includes two important class methods.
@interface PayPalConfiguration : NSObject <NSCopying>

/// Optional default user email address to be shown on the PayPal login view.
Expand Down
2 changes: 1 addition & 1 deletion PayPalMobile/PayPalFuturePaymentViewController.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// PayPalFuturePaymentViewController.h
//
// Version 2.0.0
// Version 2.0.1
//
// Copyright (c) 2013, PayPal
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion PayPalMobile/PayPalMobile.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// PayPalMobile.h
//
// Version 2.0.0
// Version 2.0.1
//
// Copyright (c) 2013, PayPal
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion PayPalMobile/PayPalPayment.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// PayPalPayment.h
//
// Version 2.0.0
// Version 2.0.1
//
// Copyright (c) 2013, PayPal
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion PayPalMobile/PayPalPaymentViewController.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// PayPalPaymentViewController.h
//
// Version 2.0.0
// Version 2.0.1
//
// Copyright (c) 2013, PayPal
// All rights reserved.
Expand Down
Binary file modified PayPalMobile/libPayPalMobile.a
Binary file not shown.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ in a webview.

If you use [CocoaPods](http://cocoapods.org) to keep up with new versions of the PayPal iOS SDK, we strongly recommend that you [include your Pods directory in source control](http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control?), as for security reasons we may sometimes stop distributing old versions of the SDK. For details, see [this discussion of the card.io SDK pod](https://github.com/card-io/card.io-iOS-SDK/issues/24).

Note: We're delighted that developers are using CocoaPods to help provide easy access to our SDK, and we'll help where we can. But we leave the creation and maintenance of the Specs to developers such as yourself. See http://guides.cocoapods.org/making/specs-and-specs-repo.html for details.


## Next Steps

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.0.0</string>
<string>2.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.0.0</string>
<string>2.0.1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIMainStoryboardFile</key>
Expand Down
4 changes: 2 additions & 2 deletions docs/future_payments_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ curl 'https://api.paypal.com/v1/oauth2/token' \
```JSON
{
"access_token": "6oyryV79E.KtpAvPudpI8VIko.ntdPikU9HCDfg0tO0",
"expires_in": 28800,
"expires_in": 900,
"refresh_token": "MFYQJTPW3zlCAjznPs2D0VQlQXwiEfTesR-dRiU_qhbUngzxR3NmeBxqKELcmGtSI739R-awwvOyGVO1LJbowy7n8Ul3vsf5HQDTCzUlDylqBvW0",
"scope": "https://api.paypal.com/v1/payments/.* https://uri.paypal.com/services/payments/futurepayments",
"token_type": "Bearer"
Expand Down Expand Up @@ -114,7 +114,7 @@ curl 'https://api.paypal.com/v1/oauth2/token' \
{
"access_token": "WfXdnxmyJtdF4q59ofxuQuAAk6eEV-Njm6puht3Nk3w",
"app_id": "APP-3TS46380HB829954H",
"expires_in": 28800,
"expires_in": 900,
"scope": "https://api.paypal.com/v1/payments/.* https://uri.paypal.com/services/payments/futurepayments",
"token_type": "Bearer"
}
Expand Down
7 changes: 7 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
PayPal iOS SDK release notes
============================

2.0.1
-----
* A few very minor fixes:
* Correct the version string returned by the SDK.
* Tidy up some messages in the console log.
* Improve handling of iOS 7 dialects such as "British English."

2.0.0
-----

Expand Down

0 comments on commit d025c95

Please sign in to comment.