From e6722f01ec20fcc13c9076433e9f9061d77e2524 Mon Sep 17 00:00:00 2001 From: emilicastells Date: Wed, 11 Jan 2023 15:13:59 +0100 Subject: [PATCH] Bump 2.0.2 version --- changelog.txt | 8 ++++++++ package.json | 2 +- readme.txt | 10 +++++++++- woocommerce-paypal-payments.php | 6 +++--- 4 files changed, 21 insertions(+), 5 deletions(-) diff --git a/changelog.txt b/changelog.txt index 1bf182d82..714e79634 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,13 @@ *** Changelog *** += 2.0.2 - TBD = +* Fix - Do not call PayPal get order by ID if it does not exist #1029 +* Fix - Type check error conflict with German Market #1056 +* Enhancement - Remove plugin data after uninstalling #1075 +* Enhancement - Add FraudNet to all payments #1040 +* Enhancement - Update "Standard Payments" tab settings #1065 +* Enhancement - Update PHP 7.2 requirement in all relevant files #1084 + = 2.0.1 - 2022-12-13 = * Fix - Error while syncing tracking data to PayPal -> Sync GZD Tracking #1020 * Fix - Fix product price retrieval for variable product buttons #1000 diff --git a/package.json b/package.json index 25fcfc920..49a410f3f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "woocommerce-paypal-payments", - "version": "2.0.1", + "version": "2.0.2", "description": "WooCommerce PayPal Payments", "repository": "https://github.com/woocommerce/woocommerce-paypal-payments", "license": "GPL-2.0", diff --git a/readme.txt b/readme.txt index 9142ca0d6..ad9bcb4dc 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: woocommerce, paypal, payments, ecommerce, e-commerce, store, sales, sell, Requires at least: 5.3 Tested up to: 6.1 Requires PHP: 7.2 -Stable tag: 2.0.1 +Stable tag: 2.0.2 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -81,6 +81,14 @@ Follow the steps below to connect the plugin to your PayPal account: == Changelog == += 2.0.2 = +* Fix - Do not call PayPal get order by ID if it does not exist #1029 +* Fix - Type check error conflict with German Market #1056 +* Enhancement - Remove plugin data after uninstalling #1075 +* Enhancement - Add FraudNet to all payments #1040 +* Enhancement - Update "Standard Payments" tab settings #1065 +* Enhancement - Update PHP 7.2 requirement in all relevant files #1084 + = 2.0.1 = * Fix - Error while syncing tracking data to PayPal -> Sync GZD Tracking #1020 * Fix - Fix product price retrieval for variable product buttons #1000 diff --git a/woocommerce-paypal-payments.php b/woocommerce-paypal-payments.php index 5922eeba2..62e1562e6 100644 --- a/woocommerce-paypal-payments.php +++ b/woocommerce-paypal-payments.php @@ -3,13 +3,13 @@ * Plugin Name: WooCommerce PayPal Payments * Plugin URI: https://woocommerce.com/products/woocommerce-paypal-payments/ * Description: PayPal's latest complete payments processing solution. Accept PayPal, Pay Later, credit/debit cards, alternative digital wallets local payment types and bank accounts. Turn on only PayPal options or process a full suite of payment methods. Enable global transaction with extensive currency and country coverage. - * Version: 2.0.1 + * Version: 2.0.2 * Author: WooCommerce * Author URI: https://woocommerce.com/ * License: GPL-2.0 * Requires PHP: 7.2 * WC requires at least: 3.9 - * WC tested up to: 7.1 + * WC tested up to: 7.2 * Text Domain: woocommerce-paypal-payments * * @package WooCommerce\PayPalCommerce @@ -23,7 +23,7 @@ use WooCommerce\PayPalCommerce\WcGateway\Settings\Settings; define( 'PAYPAL_API_URL', 'https://api.paypal.com' ); define( 'PAYPAL_SANDBOX_API_URL', 'https://api.sandbox.paypal.com' ); -define( 'PAYPAL_INTEGRATION_DATE', '2022-04-13' ); +define( 'PAYPAL_INTEGRATION_DATE', '2023-01-11' ); define( 'PPCP_FLAG_SUBSCRIPTION', true );