mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
Bump 2.0.4 version
This commit is contained in:
parent
027034777e
commit
84d15f82e5
4 changed files with 23 additions and 5 deletions
|
@ -1,5 +1,14 @@
|
|||
*** Changelog ***
|
||||
|
||||
= 2.0.4 - TBD =
|
||||
* Fix - Allow Pay Later in mini-cart #1221
|
||||
* Fix - Duplicated auth error when credentials become wrong #1229
|
||||
* Fix - Webhook issues when switching sandbox, and delete all webhooks when unsubscribing #1239
|
||||
* Enhancement - Remove shortcodes from description #1226
|
||||
* Enhancement - Handle price suffix with price for product button check #1234
|
||||
* Enhancement - Show funding source as payment method #1220
|
||||
* Enhancement - Change "Enabled" to "Available" in status text #1237
|
||||
|
||||
= 2.0.3 - 2023-03-14 =
|
||||
* Fix - `DEVICE_DATA_NOT_AVAILABLE` error message when FraudNet is enabled #1177
|
||||
* Fix - Redirect to connection tab after manual credentials input #1201
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "woocommerce-paypal-payments",
|
||||
"version": "2.0.3",
|
||||
"version": "2.0.4",
|
||||
"description": "WooCommerce PayPal Payments",
|
||||
"repository": "https://github.com/woocommerce/woocommerce-paypal-payments",
|
||||
"license": "GPL-2.0",
|
||||
|
|
11
readme.txt
11
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.3
|
||||
Stable tag: 2.0.4
|
||||
License: GPLv2
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
@ -81,6 +81,15 @@ Follow the steps below to connect the plugin to your PayPal account:
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 2.0.4 - TBD =
|
||||
* Fix - Allow Pay Later in mini-cart #1221
|
||||
* Fix - Duplicated auth error when credentials become wrong #1229
|
||||
* Fix - Webhook issues when switching sandbox, and delete all webhooks when unsubscribing #1239
|
||||
* Enhancement - Remove shortcodes from description #1226
|
||||
* Enhancement - Handle price suffix with price for product button check #1234
|
||||
* Enhancement - Show funding source as payment method #1220
|
||||
* Enhancement - Change "Enabled" to "Available" in status text #1237
|
||||
|
||||
= 2.0.3 - 2023-03-14 =
|
||||
* Fix - `DEVICE_DATA_NOT_AVAILABLE` error message when FraudNet is enabled #1177
|
||||
* Fix - Redirect to connection tab after manual credentials input #1201
|
||||
|
|
|
@ -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.3
|
||||
* Version: 2.0.4
|
||||
* 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.4
|
||||
* WC tested up to: 7.5
|
||||
* 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', '2023-02-21' );
|
||||
define( 'PAYPAL_INTEGRATION_DATE', '2023-03-20' );
|
||||
|
||||
define( 'PPCP_FLAG_SUBSCRIPTION', true );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue