Skip to content

Commit fae91e6

Browse files
authored
Merge pull request #9 from BeAPI/ver/1.0.3
Release 1.0.3
2 parents e2eddca + 5fa94fe commit fae91e6

10 files changed

Lines changed: 132 additions & 103 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ jobs:
4242
name: "Build project PHP"
4343
uses: shivammathur/setup-php@v2
4444
with:
45-
php-version: 8.3
45+
php-version: 8.1
4646
- run: composer install --prefer-dist --no-dev -o --ignore-platform-reqs
4747

4848
- id: setup-node
4949
name: "Setup Node.js"
5050
uses: actions/setup-node@v4
5151
with:
52-
node-version: '20'
52+
node-version-file: 'package.json'
5353
cache: 'npm'
5454

5555
- id: build-js

.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.2",
2+
"version": "1.0.3",
33
"slug": "blockparty-modal"
44
}

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,13 @@ 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.3**
253+
- Fix: prevent adding linkedModalId attribute to non allowed blocks.
254+
- Set min required PHP version to 8.1
255+
252256
- **1.0.2**
253257
- Filter `blockparty_modal_trigger_allowed_blocks` to control which blocks can be modal triggers; dialog margin and InnerBlocks fixes.
254258
- Crawl Modal blocks from patterns
255-
- Set min required PHP version to 8.0
256259
- Style issues
257260

258261
- **1.0.1**

blockparty-modal.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
/**
33
* Plugin Name: Blockparty Modal
44
* Description: Modal block for WordPress editor.
5-
* Version: 1.0.2
5+
* Version: 1.0.3
66
* Requires at least: 6.8
7-
* Requires PHP: 8.0
7+
* Requires PHP: 8.1
88
* Author: Be API Technical Team
99
* License: GPL-2.0-or-later
1010
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -19,7 +19,7 @@
1919
exit; // Exit if accessed directly.
2020
}
2121

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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"phpro/grumphp-shim": true
2323
},
2424
"platform": {
25-
"php": "8.3.28"
25+
"php": "8.1.31"
2626
}
2727
},
2828
"require": {

0 commit comments

Comments
 (0)