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

Commit

Permalink
updated version, changelog for reauthorization, updated assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
lvairamani committed Jul 31, 2013
1 parent 2d11a8a commit 1e8a096
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 0.6.3 - July 31, 2013
* Added support for Reauthorization.

Version 0.6.2 - July 10, 2013
* Update HTTP User-Agent

Expand Down
2 changes: 1 addition & 1 deletion lib/paypal-rest-sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var uuid = require('node-uuid');

module.exports = function () {

var sdk_version = '0.6.2';
var sdk_version = '0.6.3';
var user_agent = 'PayPalSDK/rest-sdk-nodejs ' + sdk_version + ' (node ' + process.version + '-' + process.arch + '-' + process.platform + ')';
var default_options = {
'host': 'api.sandbox.paypal.com',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "PayPal <DL-PP-Platform-NodeJs-SDK@ebay.com> (https://developer.paypal.com/)",
"name": "paypal-rest-sdk",
"description": "SDK for PayPal REST APIs",
"version": "0.6.2",
"version": "0.6.3",
"homepage": "https://github.com/paypal/rest-api-sdk-nodejs",
"keywords": [
"paypal",
Expand Down
2 changes: 1 addition & 1 deletion test/authorization.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('SDK', function () {
};
paypal_sdk.authorization.reauthorize("7GH53639GA425732B", reauthorize_details, function (error, authorization) {
expect(authorization).equal(null);
expect(error).not.to.be.null;
expect(error).not.equal(null);
done();
});
});
Expand Down

0 comments on commit 1e8a096

Please sign in to comment.