Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/1.2.7 #450

Merged
merged 2 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
13 changes: 12 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-accommodation-bookings.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 );
Expand Down
Loading