From c0b364be158507375421277e4aacbc10e7ca6536 Mon Sep 17 00:00:00 2001 From: mustafauysal Date: Mon, 23 Sep 2024 09:50:14 +0300 Subject: [PATCH] bump to version 1.0.3 --- package-lock.json | 4 ++-- package.json | 2 +- plugin.php | 4 ++-- readme.txt | 6 +++++- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 30a292d..0fd010b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "easy-text-to-speech", - "version": "1.0.2", + "version": "1.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "easy-text-to-speech", - "version": "1.0.2", + "version": "1.0.3", "dependencies": { "@wordpress/icons": "^9.26.0", "prop-types": "^15.7.2" diff --git a/package.json b/package.json index f8b1ce9..6e91904 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "easy-text-to-speech", - "version": "1.0.2", + "version": "1.0.3", "scripts": { "start": "composer install && npm run watch", "watchhot": "10up-toolkit watch --port=5010 --hot", diff --git a/plugin.php b/plugin.php index d84e702..abd6fa1 100644 --- a/plugin.php +++ b/plugin.php @@ -3,7 +3,7 @@ * Plugin Name: Easy Text-to-Speech * Plugin URI: https://handyplugins.co/easy-text-to-speech/ * Description: Turn text into high-quality speech with Amazon Polly, OpenAI, and ElevenLabs. - * Version: 1.0.2 + * Version: 1.0.3 * Requires at least: 5.7 * Requires PHP: 7.2.5 * Author: HandyPlugins @@ -23,7 +23,7 @@ } // Useful global constants. -define( 'EASYTTS_VERSION', '1.0.2' ); +define( 'EASYTTS_VERSION', '1.0.3' ); define( 'EASYTTS_DB_VERSION', '2.0' ); define( 'EASYTTS_PLUGIN_FILE', __FILE__ ); define( 'EASYTTS_URL', plugin_dir_url( __FILE__ ) ); diff --git a/readme.txt b/readme.txt index 982ff3e..c6b8759 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: text-to-speech, voice generation, audio, accessibility, polly Requires at least: 5.7 Tested up to: 6.6 Requires PHP: 7.2.5 -Stable tag: 1.0.2 +Stable tag: 1.0.3 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -75,6 +75,10 @@ You can follow the instructions [here](https://handyplugins.co/docs/easy-text-to == Changelog == += 1.0.3 (September 23, 2024) = +* Use wp-block-editor instead of wp-edit-post for block editor. +* Dependency updates. + = 1.0.2 (September 20, 2024) = * Add multiple TinyMCE editor support. * Fixed - ACF compatibility issue.