From edba529950bf86c8d08186a7397f1865716fba49 Mon Sep 17 00:00:00 2001 From: Warwick Booth Date: Fri, 15 Jan 2021 12:28:29 +0200 Subject: [PATCH] Updating the version number and changelogs. --- README.txt | 2 +- changelog.txt | 11 ++++++++++- package.json | 2 +- to-reviews.php | 4 ++-- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/README.txt b/README.txt index 096af18..559b8c1 100644 --- a/README.txt +++ b/README.txt @@ -3,7 +3,7 @@ Contributors: feedmymedia, lightspeedwp, eleshar, krugazul, jacquesvdh, ignusver Donate link: https://lsdev.biz/lsx/donate/ Tags: lsx, tour operator, reviews, ratings, accommodation, tours, destinations Requires at least: 5.0 -Tested up to: 5.5.1 +Tested up to: 5.6 Requires PHP: 7.0 Stable tag: 1.2.3 License: GPLv3 or later diff --git a/changelog.txt b/changelog.txt index b931f2a..a526475 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,7 +1,16 @@ # Change log +## [[1.2.3]](https://github.com/lightspeeddevelopment/to-reviews/releases/tag/1.2.3) - 2021-01-15 +### Added +- Allowing the block editor for the single reviews description area. + +### Fixed +- Fixed all undefined notices to adhere to coding standards. + +### Security +- General testing to ensure compatibility with latest WordPress version (5.6). -## [[1.2.]](https://github.com/lightspeeddevelopment/to-reviews/releases/tag/1.2.2) - 2020-03-30 +## [[1.2.2]](https://github.com/lightspeeddevelopment/to-reviews/releases/tag/1.2.2) - 2020-03-30 ### Fixed - Fixed PHP error `Undefined variable: connected_destination`. diff --git a/package.json b/package.json index 47a95ef..6a64d5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "to-reviews", - "version": "1.2.0", + "version": "1.2.3", "description": "Tour Operators add-on for LSX", "main": "gulpfile.js", "scripts": { diff --git a/to-reviews.php b/to-reviews.php index 61ba34d..4f168f3 100644 --- a/to-reviews.php +++ b/to-reviews.php @@ -3,7 +3,7 @@ * Plugin Name: Tour Operator Reviews * Plugin URI: https://www.lsdev.biz/product/tour-operator-reviews/ * Description: The Tour Operator Reviews extension adds the “Reviews” post type, which you can assign to our Tour Operator core post types: Tours, accommodations and destinations. - * Version: 1.2.2 + * Version: 1.2.3 * Author: LightSpeed * Author URI: https://www.lsdev.biz/ * License: GPL3+ @@ -20,7 +20,7 @@ define( 'LSX_TO_REVIEWS_PATH', plugin_dir_path( __FILE__ ) ); define( 'LSX_TO_REVIEWS_CORE', __FILE__ ); define( 'LSX_TO_REVIEWS_URL', plugin_dir_url( __FILE__ ) ); -define( 'LSX_TO_REVIEWS_VER', '1.2.2' ); +define( 'LSX_TO_REVIEWS_VER', '1.2.3' ); /* ======================= Below is the Plugin Class init ========================= */