diff --git a/changelog.txt b/changelog.txt index c0e4bf57e..c7bef830a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,6 @@ *** WooCommerce Subscriptions Core Changelog *** -= 7.6.0 - xxxx-xx-xx = += 7.6.0 - 2024-10-14 = * Fix - Correctly updates a subscription status to `cancelled` during a payment failure call when the current status is `pending-cancel`. * Fix - Clear the `cancelled_email_sent` meta when a subscription is reactivated to allow the customer to receive future cancellation emails. * Fix - Prevent deprecation notices after updating to WooCommerce 9.3. diff --git a/includes/class-wc-subscriptions-core-plugin.php b/includes/class-wc-subscriptions-core-plugin.php index 5408c0587..dae49d820 100644 --- a/includes/class-wc-subscriptions-core-plugin.php +++ b/includes/class-wc-subscriptions-core-plugin.php @@ -16,7 +16,7 @@ class WC_Subscriptions_Core_Plugin { * The version of subscriptions-core library. * @var string */ - protected $library_version = '7.5.0'; // WRCS: DEFINED_VERSION. + protected $library_version = '7.6.0'; // WRCS: DEFINED_VERSION. /** * The subscription scheduler instance. diff --git a/package-lock.json b/package-lock.json index a642d82f7..512234a37 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "woocommerce-subscriptions-core", - "version": "7.5.0", + "version": "7.6.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "woocommerce-subscriptions-core", - "version": "7.5.0", + "version": "7.6.0", "hasInstallScript": true, "license": "GPL-3.0-or-later", "dependencies": { diff --git a/package.json b/package.json index 87a3630f0..1a1e12992 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "title": "WooCommerce Subscriptions Core", "author": "Automattic", "license": "GPL-3.0-or-later", - "version": "7.5.0", + "version": "7.6.0", "description": "", "homepage": "https://github.com/Automattic/woocommerce-subscriptions-core", "main": "Gruntfile.js", diff --git a/woocommerce-subscriptions-core.php b/woocommerce-subscriptions-core.php index fe844c2b8..aeffa845e 100644 --- a/woocommerce-subscriptions-core.php +++ b/woocommerce-subscriptions-core.php @@ -6,5 +6,5 @@ * Author: Automattic * Author URI: https://woocommerce.com/ * Requires WP: 5.6 - * Version: 7.5.0 + * Version: 7.6.0 */