From 990f4e8df1bc6059d8379de560fa6c429b1cfcf5 Mon Sep 17 00:00:00 2001 From: Hector Lovo Date: Thu, 4 May 2023 13:45:02 -0400 Subject: [PATCH] Product version bump update --- changelog.txt | 3 +++ package-lock.json | 2 +- package.json | 2 +- readme.txt | 8 +++----- woocommerce-gateway-stripe.php | 4 ++-- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/changelog.txt b/changelog.txt index 9ddcd58bbe..92a0539a33 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ *** Changelog *** += 6.2.1 - 2023-05-30 = +* Fix - Add Order Key Validation. + = 6.2.0 - 2022-02-17 = * Add - Add onboarding payment gateway setup methods. * Fix - Enable Stripe payment method after connecting account. diff --git a/package-lock.json b/package-lock.json index 87a1b79a86..ce6540311e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "woocommerce-gateway-stripe", - "version": "6.2.0", + "version": "6.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ab64b3393a..4850eafe01 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-gateway-stripe", "title": "WooCommerce Gateway Stripe", - "version": "6.2.0", + "version": "6.2.1", "license": "GPL-3.0", "homepage": "http://wordpress.org/plugins/woocommerce-gateway-stripe/", "repository": { diff --git a/readme.txt b/readme.txt index cc8a0a0b6e..38bcd4d85d 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: credit card, stripe, apple pay, payment request, google pay, sepa, sofort, Requires at least: 5.6 Tested up to: 5.9 Requires PHP: 7.0 -Stable tag: 6.2.0 +Stable tag: 6.2.1 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html Attributions: thorsten-stripe @@ -128,9 +128,7 @@ If you get stuck, you can ask for help in the Plugin Forum. == Changelog == -= 6.2.0 - 2022-02-17 = -* Add - Add onboarding payment gateway setup methods. -* Fix - Enable Stripe payment method after connecting account. -* Fix - Missing statement descriptor in account summary API when not set in Stripe. += 6.2.1 - 2023-05-30 = +* Fix - Add Order Key Validation. [See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-stripe/trunk/changelog.txt). diff --git a/woocommerce-gateway-stripe.php b/woocommerce-gateway-stripe.php index 83cd66d3c9..a28c165b4c 100644 --- a/woocommerce-gateway-stripe.php +++ b/woocommerce-gateway-stripe.php @@ -5,7 +5,7 @@ * Description: Take credit card payments on your store using Stripe. * Author: WooCommerce * Author URI: https://woocommerce.com/ - * Version: 6.2.0 + * Version: 6.2.1 * Requires at least: 5.6 * Tested up to: 5.9 * WC requires at least: 5.7 @@ -21,7 +21,7 @@ /** * Required minimums and constants */ -define( 'WC_STRIPE_VERSION', '6.2.0' ); // WRCS: DEFINED_VERSION. +define( 'WC_STRIPE_VERSION', '6.2.1' ); // WRCS: DEFINED_VERSION. define( 'WC_STRIPE_MIN_PHP_VER', '7.0.0' ); define( 'WC_STRIPE_MIN_WC_VER', '5.7' ); define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '5.8' );