Skip to content

Commit 844725e

Browse files
committed
chore: releases version 1.0.6
1 parent 76a0c4e commit 844725e

7 files changed

Lines changed: 12 additions & 6 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.5",
2+
"version": "1.0.6",
33
"slug": "blockparty-modal"
44
}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,9 @@ This plugin is distributed under the GPL-2.0-or-later license. See the [LICENSE]
272272

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

275+
- **1.0.6**
276+
- Fix `blueprint.json` config.
277+
275278
- **1.0.5**
276279
- Add `blueprint.json` to test the plugin on WordPress Playground.
277280
- Add `screen-reader-text` class to close button element when display icon only is selected.

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.5
5+
* Version: 1.0.6
66
* Requires at least: 6.8
77
* Requires PHP: 8.1
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.5' );
22+
define( 'BLOCKPARTY_MODAL_VERSION', '1.0.6' );
2323
define( 'BLOCKPARTY_MODAL_URL', plugin_dir_url( __FILE__ ) );
2424
define( 'BLOCKPARTY_MODAL_DIR', plugin_dir_path( __FILE__ ) );
2525

blueprint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"pluginData": {
1717
"resource": "git:directory",
1818
"url": "https://github.com/BeAPI/blockparty-modal",
19-
"ref": "1.0.5",
19+
"ref": "1.0.6",
2020
"refType": "tag"
2121
},
2222
"options": {

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.5",
3+
"version": "1.0.6",
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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove
4545

4646
== Changelog ==
4747

48+
= 1.0.6 =
49+
* Fix `blueprint.json` config.
50+
4851
= 1.0.5 =
4952
* Add `blueprint.json` to test the plugin on WordPress Playground.
5053
* Add `screen-reader-text` class to close button element when display icon only is selected.

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.5",
5+
"version": "1.0.6",
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)