diff --git a/changelog.txt b/changelog.txt index ada9e6a1..aef30578 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,11 @@ *** Changelog *** += 1.2.1 - 2023-10-10 = +* Dev - Hard code the paths to the asset data files. +* Dev - Update PHPCS and PHPCompatibility GitHub Actions. +* Fix - Fatal Error when WooCommerce is disabled. +* Tweak - Indicate compatibility with WooPayments extension. + = 1.2.0 - 2023-09-05 = * Dev - Bump PHP minimum supported version from 7.0 to 7.3. * Dev - Bump WooCommerce "tested up to" version from 7.8 to 8.0. diff --git a/package-lock.json b/package-lock.json index 8f9c512e..9c7f7b97 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "woocommerce-accommodation-bookings", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "woocommerce-accommodation-bookings", - "version": "1.2.0", + "version": "1.2.1", "license": "GPL-3.0+", "devDependencies": { "@woocommerce/eslint-plugin": "^2.2.0", diff --git a/package.json b/package.json index c926d327..64362a12 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-accommodation-bookings", "title": "WooCommerce Accommodation Bookings", - "version": "1.2.0", + "version": "1.2.1", "config": { "translate": false, "wp_org_slug": "woocommerce-accommodation-bookings", diff --git a/readme.txt b/readme.txt index 3b770e5c..d7f9197f 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: woocommerce, automattic, woothemes, jshreve, akeda, bor0, jessepe Tags: woocommerce, bookings, accommodations Requires at least: 6.1 Tested up to: 6.2 -Stable tag: 1.2.0 +Stable tag: 1.2.1 License: GNU General Public License v3.0 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -38,6 +38,12 @@ If the prices shown on the product do not match the prices defined in the dashbo == Changelog == += 1.2.1 - 2023-10-10 = +* Dev - Hard code the paths to the asset data files. +* Dev - Update PHPCS and PHPCompatibility GitHub Actions. +* Fix - Fatal Error when WooCommerce is disabled. +* Tweak - Indicate compatibility with WooPayments extension. + = 1.2.0 - 2023-09-05 = * Dev - Bump PHP minimum supported version from 7.0 to 7.3. * Dev - Bump WooCommerce "tested up to" version from 7.8 to 8.0. diff --git a/woocommerce-accommodation-bookings.php b/woocommerce-accommodation-bookings.php index db563031..b0f60d0e 100644 --- a/woocommerce-accommodation-bookings.php +++ b/woocommerce-accommodation-bookings.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Accommodation Bookings * Plugin URI: https://woocommerce.com/products/woocommerce-accommodation-bookings/ * Description: An accommodations add-on for the WooCommerce Bookings extension. - * Version: 1.2.0 + * Version: 1.2.1 * Author: WooCommerce * Author URI: https://woocommerce.com * Text Domain: woocommerce-accommodation-bookings @@ -25,7 +25,7 @@ exit; } -define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1.2.0' ); // WRCS: DEFINED_VERSION. +define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1.2.1' ); // WRCS: DEFINED_VERSION. require_once 'includes/class-wc-accommodation-bookings-plugin.php'; $wc_accom_plugin = new WC_Accommodation_Bookings_Plugin( __FILE__, WC_ACCOMMODATION_BOOKINGS_VERSION );