From 8c15da6f36291d5853447a0151adfef45a12213b Mon Sep 17 00:00:00 2001 From: Diego Curbelo Date: Thu, 7 Nov 2024 17:50:52 -0300 Subject: [PATCH] woorelease: Product version bump update --- changelog.txt | 2 +- package-lock.json | 2 +- package.json | 2 +- readme.txt | 4 ++-- woocommerce-gateway-stripe.php | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/changelog.txt b/changelog.txt index 9a59c88ae..8a7175a7f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,6 @@ *** Changelog *** -= 8.8.2 - xxxx-xx-xx = += 8.8.2 - 2024-11-07 = * Fix - Prevent marking renewal orders as processing/completed multiple times due to handling the Stripe webhook in parallel. * Dev - Refactor lock_order_payment() to use order meta instead of transients. * Update - Process successful payment intent webhooks asynchronously. diff --git a/package-lock.json b/package-lock.json index 7264a288b..38929984e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "woocommerce-gateway-stripe", - "version": "8.8.1", + "version": "8.8.2", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 1ea391689..a98bd1896 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-gateway-stripe", "title": "WooCommerce Gateway Stripe", - "version": "8.8.1", + "version": "8.8.2", "license": "GPL-3.0", "homepage": "http://wordpress.org/plugins/woocommerce-gateway-stripe/", "repository": { diff --git a/readme.txt b/readme.txt index 194d88401..4abd707c8 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: credit card, stripe, apple pay, payment request, google pay, sepa, bancont Requires at least: 6.4 Tested up to: 6.6 Requires PHP: 7.4 -Stable tag: 8.8.1 +Stable tag: 8.8.2 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html Attributions: thorsten-stripe @@ -110,7 +110,7 @@ If you get stuck, you can ask for help in the [Plugin Forum](https://wordpress.o == Changelog == -= 8.8.2 - xxxx-xx-xx = += 8.8.2 - 2024-11-07 = * Fix - Prevent marking renewal orders as processing/completed multiple times due to handling the Stripe webhook in parallel. * Dev - Refactor lock_order_payment() to use order meta instead of transients. * Update - Process successful payment intent webhooks asynchronously. diff --git a/woocommerce-gateway-stripe.php b/woocommerce-gateway-stripe.php index f20a9332d..f01d45689 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: Stripe * Author URI: https://stripe.com/ - * Version: 8.8.1 + * Version: 8.8.2 * Requires Plugins: woocommerce * Requires at least: 6.4 * Tested up to: 6.6 @@ -22,7 +22,7 @@ /** * Required minimums and constants */ -define( 'WC_STRIPE_VERSION', '8.8.1' ); // WRCS: DEFINED_VERSION. +define( 'WC_STRIPE_VERSION', '8.8.2' ); // WRCS: DEFINED_VERSION. define( 'WC_STRIPE_MIN_PHP_VER', '7.3.0' ); define( 'WC_STRIPE_MIN_WC_VER', '7.4' ); define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '7.5' );