diff --git a/changelog.txt b/changelog.txt index d27d433..74a2087 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,16 @@ *** Changelog *** += 1.2.7 - 2024-07-15 = +* Dev - Bump WooCommerce "tested up to" version 9.0. +* Dev - Bump WooCommerce minimum supported version to 8.8. +* Dev - Bump WordPress "tested up to" version 6.6. +* Dev - Bump WordPress minimum supported version to 6.4. +* Dev - Update NPM packages and node version to v20 to modernize developer experience. +* Dev - Add proper plugin name to the `readme.txt`. Remove Bookings from our required plugins list as it's not hosted on WordPress.org. +* Dev - Exclude the Woo Comment Hook `@since` sniff. +* Fix - Unavailable accommodation days appear available even when booked. +* Fix - Error in Updating Accommodation Product Data via REST API: `Unrecognized Product Type Response`. + = 1.2.6 - 2024-05-20 = * Dev - Bump WooCommerce "tested up to" version 8.9. * Dev - Bump WooCommerce minimum supported version to 8.7. diff --git a/package-lock.json b/package-lock.json index 416972d..9d21b1a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "woocommerce-accommodation-bookings", - "version": "1.2.6", + "version": "1.2.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "woocommerce-accommodation-bookings", - "version": "1.2.6", + "version": "1.2.7", "license": "GPL-3.0+", "devDependencies": { "@playwright/test": "^1.44.0", diff --git a/package.json b/package.json index 2d29eed..1bd6a87 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-accommodation-bookings", "title": "WooCommerce Accommodation Bookings", - "version": "1.2.6", + "version": "1.2.7", "homepage": "https://woocommerce.com/products/woocommerce-accommodation-bookings/", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 2d4c731..91e1c84 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: woocommerce, automattic Tags: woocommerce, bookings, accommodations Requires at least: 6.4 Tested up to: 6.6 -Stable tag: 1.2.6 +Stable tag: 1.2.7 License: GNU General Public License v3.0 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -38,6 +38,17 @@ If the prices shown on the product do not match the prices defined in the dashbo == Changelog == += 1.2.7 - 2024-07-15 = +* Dev - Bump WooCommerce "tested up to" version 9.0. +* Dev - Bump WooCommerce minimum supported version to 8.8. +* Dev - Bump WordPress "tested up to" version 6.6. +* Dev - Bump WordPress minimum supported version to 6.4. +* Dev - Update NPM packages and node version to v20 to modernize developer experience. +* Dev - Add proper plugin name to the `readme.txt`. Remove Bookings from our required plugins list as it's not hosted on WordPress.org. +* Dev - Exclude the Woo Comment Hook `@since` sniff. +* Fix - Unavailable accommodation days appear available even when booked. +* Fix - Error in Updating Accommodation Product Data via REST API: `Unrecognized Product Type Response`. + = 1.2.6 - 2024-05-20 = * Dev - Bump WooCommerce "tested up to" version 8.9. * Dev - Bump WooCommerce minimum supported version to 8.7. diff --git a/woocommerce-accommodation-bookings.php b/woocommerce-accommodation-bookings.php index 88a68f9..6ff7b35 100644 --- a/woocommerce-accommodation-bookings.php +++ b/woocommerce-accommodation-bookings.php @@ -4,7 +4,7 @@ * Requires Plugins: woocommerce * Plugin URI: https://woocommerce.com/products/woocommerce-accommodation-bookings/ * Description: An accommodations add-on for the WooCommerce Bookings extension. - * Version: 1.2.6 + * Version: 1.2.7 * Author: WooCommerce * Author URI: https://woocommerce.com * Text Domain: woocommerce-accommodation-bookings @@ -27,7 +27,7 @@ exit; } -define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1.2.6' ); // WRCS: DEFINED_VERSION. +define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1.2.7' ); // 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 );