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

Updating the version number for WP 6.3 release #309

Merged
merged 1 commit into from
Aug 8, 2023
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
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Change log

## [[1.4.9]](https://github.com/lightspeeddevelopment/tour-operator/releases/tag/1.4.9) - In Development
## [[1.4.9]](https://github.com/lightspeeddevelopment/tour-operator/releases/tag/1.4.9) - 2023-08-09

### Added
- Adding in suport for the read more block while using the Block Editor.

### Security
- General testing to ensure compatibility with latest WordPress version (6.3).

## [[1.4.8]](https://github.com/lightspeeddevelopment/tour-operator/releases/tag/1.4.8) - 2023-04-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tour-operator",
"version": "1.4.8",
"version": "1.4.9",
"description": "Tour Operators for LSX",
"main": "gulpfile.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Contributors: feedmymedia, lightspeedwp, eleshar, krugazul, jacquesvdh, ignusver
Donate link: https://lsdev.biz/lsx/donate/
Tags: lsx, tour operator, tours, travel, travel-agency
Requires at least: 5.0
Tested up to: 6.2
Tested up to: 6.3
Requires PHP: 7.2
Stable tag: 1.4.8
Stable tag: 1.4.9
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html

Expand Down
10 changes: 2 additions & 8 deletions tour-operator.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: The LSX Tour Operator plugin core contains the Accommodation, Destination and Tour post types. Use these core post types to build day-by-day tour itineraries that map out of the progress of each tour through the various accommodations and destinations that are stayed at along the way.
* Tags: tour operator, tour operators, tour, tours, tour itinerary, tour itineraries, accommodation, accommodation listings, destinations, regions, tourism, lsx
* Author: LightSpeed
* Version: 1.4.8
* Version: 1.4.9
* Author URI: https://www.lsdev.biz/
* License: GPL3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand All @@ -21,7 +21,7 @@
define( 'LSX_TO_PATH', plugin_dir_path( __FILE__ ) );
define( 'LSX_TO_CORE', __FILE__ );
define( 'LSX_TO_URL', plugin_dir_url( __FILE__ ) );
define( 'LSX_TO_VER', '1.4.8' );
define( 'LSX_TO_VER', '1.4.9' );

// Post Expirator.
define( 'LSX_TO_POSTEXPIRATOR_DATEFORMAT', esc_html__( 'l F jS, Y', 'tour-operator' ) );
Expand All @@ -34,9 +34,3 @@
* Block Initializer.
*/
require_once LSX_TO_PATH . 'src/init.php';

// Register activation hook.
/*register_activation_hook( LSX_TO_CORE, array(
'Tour_Operator',
'register_activation_hook',
) );*/
Loading