Skip to content

Commit 036d966

Browse files
committed
chore: updates plugin to version 1.0.2
Bumps the plugin version to 1.0.2 in all relevant files. Includes changes to crawl modal blocks from patterns, set the minimum required PHP version to 8.0, and address style issues.
1 parent aa18d95 commit 036d966

6 files changed

Lines changed: 22 additions & 7 deletions

File tree

.plugin-data

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.0.1",
2+
"version": "1.0.2",
33
"slug": "blockparty-modal"
44
}

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,17 @@ This plugin is distributed under the GPL-2.0-or-later license. See the [LICENSE]
249249

250250
See [readme.txt](readme.txt) for the full version history. Recent highlights:
251251

252-
- **1.0.1** — Filter `blockparty_modal_trigger_allowed_blocks` to control which blocks can be modal triggers; dialog margin and InnerBlocks fixes.
253-
- **1.0.0** — Initial release (Modal block, trigger linking, close behaviour, i18n).
252+
- **1.0.2**
253+
- Filter `blockparty_modal_trigger_allowed_blocks` to control which blocks can be modal triggers; dialog margin and InnerBlocks fixes.
254+
- Crawl Modal blocks from patterns
255+
- Set min required PHP version to 8.0
256+
- Style issues
257+
258+
- **1.0.1**
259+
- Filter `blockparty_modal_trigger_allowed_blocks` to control which blocks can be modal triggers; dialog margin and InnerBlocks fixes.
260+
261+
- **1.0.0**
262+
- Initial release (Modal block, trigger linking, close behaviour, i18n).
254263

255264
---
256265

blockparty-modal.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Blockparty Modal
44
* Description: Modal block for WordPress editor.
5-
* Version: 1.0.1
5+
* Version: 1.0.2
66
* Requires at least: 6.8
77
* Requires PHP: 8.0
88
* Author: Be API Technical Team
@@ -19,7 +19,7 @@
1919
exit; // Exit if accessed directly.
2020
}
2121

22-
define( 'BLOCKPARTY_MODAL_VERSION', '1.0.1' );
22+
define( 'BLOCKPARTY_MODAL_VERSION', '1.0.2' );
2323
define( 'BLOCKPARTY_MODAL_URL', plugin_dir_url( __FILE__ ) );
2424
define( 'BLOCKPARTY_MODAL_DIR', plugin_dir_path( __FILE__ ) );
2525

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blockparty-modal",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Add a modal block to the WordPress editor.",
55
"author": "Be API",
66
"license": "GPL-2.0-or-later",

readme.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove
4545

4646
== Changelog ==
4747

48+
= 1.0.2 =
49+
* Filter `blockparty_modal_trigger_allowed_blocks` to control which blocks can be modal triggers; dialog margin and InnerBlocks fixes.
50+
* Crawl Modal blocks from patterns
51+
* Set min required PHP version to 8.0
52+
* Style issues
53+
4854
= 1.0.1 =
4955
* Fix margin style for dialog element; set to auto by default instead of 0.
5056
* Remove dupplicated InnerBlocks.Content

src/blockparty-modal/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 3,
44
"name": "blockparty/modal",
5-
"version": "1.0.1",
5+
"version": "1.0.2",
66
"title": "Modal",
77
"category": "widgets",
88
"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.",

0 commit comments

Comments
 (0)