From 0ce097760becdcac77b1df1721f527f781a4c66b Mon Sep 17 00:00:00 2001 From: Jay Patel Date: Mon, 18 Apr 2016 13:39:04 -0500 Subject: [PATCH] Preparing for release 1.7.0 --- README.md | 1 + lib/PayPal/Core/PayPalConstants.php | 2 +- release_notes.md | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6852aec..d0a0885 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ __Welcome to PayPal PHP SDK__. This repository contains PayPal's PHP SDK and sam ## Latest Updates +- SDK now allows injecting your logger implementation. Please read [documentation](https://github.com/paypal/PayPal-PHP-SDK/wiki/Custom-Logger) for more details. - If you are running into SSL Connect Error talking to sandbox or live, please update your SDK to latest version or, follow instructions as shown [here](https://github.com/paypal/PayPal-PHP-SDK/issues/474) - Checkout the latest 1.0.0 release. Here are all the [ breaking Changes in v1.0.0 ](https://github.com/paypal/PayPal-PHP-SDK/wiki/Breaking-Changes---1.0.0) if you are migrating from older versions. - Now we have a [Github Page](http://paypal.github.io/PayPal-PHP-SDK/), that helps you find all helpful resources building applications using PayPal-PHP-SDK. diff --git a/lib/PayPal/Core/PayPalConstants.php b/lib/PayPal/Core/PayPalConstants.php index 7de5268..6a72733 100644 --- a/lib/PayPal/Core/PayPalConstants.php +++ b/lib/PayPal/Core/PayPalConstants.php @@ -12,7 +12,7 @@ class PayPalConstants { const SDK_NAME = 'PayPal-PHP-SDK'; - const SDK_VERSION = '1.6.4'; + const SDK_VERSION = '1.7.0'; /** * Approval URL for Payment diff --git a/release_notes.md b/release_notes.md index 4143718..f7ea637 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,6 +1,11 @@ PayPal PHP SDK release notes ============================ +v1.7.0 +---- +* Enable custom logger injection. +* Minor bug fixes. + v1.6.4 ---- * SSL Connect Error Fix