diff --git a/.plugin-data b/.plugin-data index db3c7e7..07f062f 100644 --- a/.plugin-data +++ b/.plugin-data @@ -1,4 +1,4 @@ { - "version": "1.0.6", + "version": "1.0.7", "slug": "blockparty-modal" } diff --git a/README.md b/README.md index 52a29db..e91b8c1 100644 --- a/README.md +++ b/README.md @@ -272,6 +272,9 @@ This plugin is distributed under the GPL-2.0-or-later license. See the [LICENSE] See [readme.txt](readme.txt) for the full version history. Recent highlights: +- **1.0.7** + - Add block setting for the close button label. + - **1.0.6** - Fix `blueprint.json` config. diff --git a/blockparty-modal.php b/blockparty-modal.php index cda091a..5cc69b0 100644 --- a/blockparty-modal.php +++ b/blockparty-modal.php @@ -2,7 +2,7 @@ /** * Plugin Name: Blockparty Modal * Description: Modal block for WordPress editor. - * Version: 1.0.6 + * Version: 1.0.7 * Requires at least: 6.8 * Requires PHP: 8.1 * Author: Be API Technical Team @@ -19,7 +19,7 @@ exit; // Exit if accessed directly. } -define( 'BLOCKPARTY_MODAL_VERSION', '1.0.6' ); +define( 'BLOCKPARTY_MODAL_VERSION', '1.0.7' ); define( 'BLOCKPARTY_MODAL_URL', plugin_dir_url( __FILE__ ) ); define( 'BLOCKPARTY_MODAL_DIR', plugin_dir_path( __FILE__ ) ); diff --git a/blueprint.json b/blueprint.json index a735906..afc0206 100644 --- a/blueprint.json +++ b/blueprint.json @@ -11,7 +11,7 @@ "pluginData": { "resource": "git:directory", "url": "https://github.com/BeAPI/blockparty-modal", - "ref": "1.0.6", + "ref": "1.0.7", "refType": "tag" }, "options": { diff --git a/languages/blockparty-modal.pot b/languages/blockparty-modal.pot index 5113ca1..32605af 100644 --- a/languages/blockparty-modal.pot +++ b/languages/blockparty-modal.pot @@ -2,7 +2,7 @@ # This file is distributed under the GPL-2.0-or-later. msgid "" msgstr "" -"Project-Id-Version: Blockparty Modal 1.0.6\n" +"Project-Id-Version: Blockparty Modal 1.0.7\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockparty-modal\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/package-lock.json b/package-lock.json index d71c65e..405b1ec 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "blockparty-modal", - "version": "1.0.6", + "version": "1.0.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "blockparty-modal", - "version": "1.0.6", + "version": "1.0.7", "license": "GPL-2.0-or-later", "dependencies": { "@beapi/icons": "^1.2.6", diff --git a/package.json b/package.json index bedef6a..893cf10 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "blockparty-modal", - "version": "1.0.6", + "version": "1.0.7", "description": "Add a modal block to the WordPress editor.", "author": "Be API", "license": "GPL-2.0-or-later", diff --git a/readme.txt b/readme.txt index 666475f..fd897ee 100644 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ Contributors: Be API Technical Team Tags: block Tested up to: 6.8 -Stable tag: 1.0.1 +Stable tag: 1.0.7 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -45,6 +45,9 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove == Changelog == += 1.0.7 = +* Add block setting for the close button label. + = 1.0.6 = * Fix `blueprint.json` config. diff --git a/src/blockparty-modal/block.json b/src/blockparty-modal/block.json index 0ca1f1d..ccdecf4 100644 --- a/src/blockparty-modal/block.json +++ b/src/blockparty-modal/block.json @@ -2,7 +2,7 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 3, "name": "blockparty/modal", - "version": "1.0.6", + "version": "1.0.7", "title": "Modal", "category": "widgets", "description": "Insert a modal dialog that opens on trigger. Configure content and behaviour in the editor; the modal is displayed on the frontend when activated.",