From 0a5db22a0c4311fbc599c241f51fcc22c5c9d3ef Mon Sep 17 00:00:00 2001 From: Marie Comet Date: Fri, 10 Apr 2026 12:16:39 +0200 Subject: [PATCH 1/4] release 1.0.7 --- .plugin-data | 2 +- README.md | 3 +++ blockparty-modal.php | 4 ++-- blueprint.json | 2 +- languages/blockparty-modal.pot | 2 +- package.json | 2 +- readme.txt | 3 +++ src/blockparty-modal/block.json | 2 +- 8 files changed, 13 insertions(+), 7 deletions(-) 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.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..47906db 100644 --- a/readme.txt +++ b/readme.txt @@ -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..f5bbf87 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": "", "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.", From 6dca4474d32234fac9cb687d50ad1c3d8a9110d0 Mon Sep 17 00:00:00 2001 From: Marie Comet Date: Fri, 10 Apr 2026 12:22:22 +0200 Subject: [PATCH 2/4] re-add block version --- src/blockparty-modal/block.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockparty-modal/block.json b/src/blockparty-modal/block.json index f5bbf87..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": "", + "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.", From e871df336ef35f31aa9eadeb4367968db11b40a6 Mon Sep 17 00:00:00 2001 From: Marie Comet Date: Fri, 10 Apr 2026 12:24:31 +0200 Subject: [PATCH 3/4] update package lock --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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", From c78c30d1b18aadd8bf96852f3312cb24ff9c6f7d Mon Sep 17 00:00:00 2001 From: Marie Comet Date: Mon, 13 Apr 2026 09:14:43 +0200 Subject: [PATCH 4/4] update stable tag in readme.txt --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 47906db..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