diff --git a/changelog.txt b/changelog.txt index dee215e03..10c540d23 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,5 @@ *** Changelog *** -= 5.1.0 - 2021-xx-xx = += 5.1.0 - 2021-04-07 = * Fix - Don't attempt to submit level 3 data for non-US merchants. * Fix - Hide Payment Request Buttons when guest checkout is disabled. * Fix - Match Payment Request states with WooCommerce states. diff --git a/package-lock.json b/package-lock.json index 7e567cf35..b52a2e219 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "woocommerce-gateway-stripe", - "version": "5.0.0", + "version": "5.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 4269be24e..02c39f1e8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-gateway-stripe", "title": "WooCommerce Gateway Stripe", - "version": "5.0.0", + "version": "5.1.0", "license": "GPL-3.0", "homepage": "http://wordpress.org/plugins/woocommerce-gateway-stripe/", "repository": { diff --git a/readme.txt b/readme.txt index 3964f6ceb..e4fd5ee36 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: 4.4 Tested up to: 5.6 Requires PHP: 5.6 -Stable tag: 5.0.0 +Stable tag: 5.1.0 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html Attributions: thorsten-stripe @@ -126,7 +126,7 @@ If you get stuck, you can ask for help in the Plugin Forum. == Changelog == -= 5.1.0 - 2021-xx-xx = += 5.1.0 - 2021-04-07 = * Fix - Don't attempt to submit level 3 data for non-US merchants. * Fix - Hide Payment Request Buttons when guest checkout is disabled. diff --git a/woocommerce-gateway-stripe.php b/woocommerce-gateway-stripe.php index eff9848bc..02311ca70 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: 5.0.0 + * Version: 5.1.0 * Requires at least: 4.4 * Tested up to: 5.6 * WC requires at least: 3.0 @@ -21,7 +21,7 @@ /** * Required minimums and constants */ -define( 'WC_STRIPE_VERSION', '5.0.0' ); // WRCS: DEFINED_VERSION. +define( 'WC_STRIPE_VERSION', '5.1.0' ); // WRCS: DEFINED_VERSION. define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' ); define( 'WC_STRIPE_MIN_WC_VER', '3.0' ); define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '3.3' );