Skip to content

Commit

Permalink
Merge pull request #346 from woocommerce/release/1.1.42
Browse files Browse the repository at this point in the history
Release/1.1.42
  • Loading branch information
dkotter authored Jun 14, 2023
2 parents 17e46fe + 4c93b1d commit 133be4b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 10 deletions.
9 changes: 8 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
*** Changelog ***

= 1.1.42 - 2023-06-14 =
* Dev - Bump WooCommerce "tested up to" version to 7.6.
* Dev - Bump WooCommerce minimum supported version from 6.0 to 6.8.
* Dev - Bump WordPress "tested up to" version to 6.2.
* Dev - Bump WordPress minimum supported version from 5.6 to 5.8.
* Dev - Added new GitHub Workflow to run Quality Insights Toolkit tests.

= 1.1.41 - 2023-05-26 =
* Dev - Add product unit filter, `wc_bookings_product_duration_fallback`, to add night unit support.
* Dev - Fix linting errors found by the Quality Insights Toolkit.
Expand Down Expand Up @@ -167,7 +174,7 @@
* Fix - Fallback to default checkin/checkout time values if none are set.
* Fix - Fully booked days not showing correctly when persons are used.
* Fix - Resource availability calculated incorrectly.
* Add - New functionality to restrict the day a booking can start on.
* Add - New functionality to restrict the day a booking can start on.
* Fix - Tax fields missing.
* Fix - Display price is showing incorrectly.
* Fix - Availability rules being ignored.
Expand Down
2 changes: 1 addition & 1 deletion 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.1.41",
"version": "1.1.42",
"config": {
"translate": false,
"wp_org_slug": "woocommerce-accommodation-bookings",
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: woocommerce, automattic, woothemes, jshreve, akeda, bor0, jessepe
Tags: woocommerce, bookings, accommodations
Requires at least: 5.6
Tested up to: 6.1
Stable tag: 1.1.41
Stable tag: 1.1.42
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -36,6 +36,13 @@ If the prices shown on the product do not match the prices defined in the dashbo

== Changelog ==

= 1.1.42 - 2023-06-14 =
* Dev - Bump WooCommerce "tested up to" version to 7.6.
* Dev - Bump WooCommerce minimum supported version from 6.0 to 6.8.
* Dev - Bump WordPress "tested up to" version to 6.2.
* Dev - Bump WordPress minimum supported version from 5.6 to 5.8.
* Dev - Added new GitHub Workflow to run Quality Insights Toolkit tests.

= 1.1.41 - 2023-05-26 =
* Dev - Add product unit filter, `wc_bookings_product_duration_fallback`, to add night unit support.
* Dev - Fix linting errors found by the Quality Insights Toolkit.
Expand Down
14 changes: 8 additions & 6 deletions woocommerce-accommodation-bookings.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
/*
/**
* 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.1.41
* Version: 1.1.42
* Author: WooCommerce
* Author URI: https://woocommerce.com
* Text Domain: woocommerce-accommodation-bookings
Expand All @@ -17,14 +17,16 @@
* Copyright: © 2023 WooCommerce
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*
* @package woocommerce-accommodation-bookings
*/

if ( ! defined( 'ABSPATH' ) ) {
exit;
}

define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1.1.41' ); // WRCS: DEFINED_VERSION.
define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1.1.42' ); // WRCS: DEFINED_VERSION.

require_once( 'includes/class-wc-accommodation-bookings-plugin.php' );
$plugin = new WC_Accommodation_Bookings_Plugin( __FILE__, WC_ACCOMMODATION_BOOKINGS_VERSION );
$plugin->run();
require_once 'includes/class-wc-accommodation-bookings-plugin.php';
$wc_accom_plugin = new WC_Accommodation_Bookings_Plugin( __FILE__, WC_ACCOMMODATION_BOOKINGS_VERSION );
$wc_accom_plugin->run();

0 comments on commit 133be4b

Please sign in to comment.