Skip to content

Commit 65010fa

Browse files
authored
Merge pull request #4 from BeAPI/release/1.0.2
Release 1.0.2
2 parents cff2dbd + 751c5eb commit 65010fa

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,21 @@ jobs:
4545
php-version: 8.3
4646
- run: composer install --prefer-dist --no-dev -o --ignore-platform-reqs
4747

48+
- id: setup-node
49+
name: "Setup Node.js"
50+
uses: actions/setup-node@v4
51+
with:
52+
node-version: '20'
53+
cache: 'npm'
54+
55+
- id: build-js
56+
name: "Build JavaScript assets"
57+
run: |
58+
echo "Install npm dependencies"
59+
npm ci
60+
echo "Build assets"
61+
npm run build
62+
4863
- id: commit-and-push
4964
name: "Commit and push new TAG"
5065
run: |

.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-iframe"
44
}

blockparty-iframe.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Blockparty Iframe
44
* Description: Add a block to display an embedded frame in the WordPress editor.
5-
* Version: 1.0.1
5+
* Version: 1.0.2
66
* Requires at least: 6.7
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_IFRAME_VERSION', '1.0.1' );
22+
define( 'BLOCKPARTY_IFRAME_VERSION', '1.0.2' );
2323
define( 'BLOCKPARTY_IFRAME_URL', plugin_dir_url( __FILE__ ) );
2424
define( 'BLOCKPARTY_IFRAME_DIR', plugin_dir_path( __FILE__ ) );
2525
define( 'BLOCKPARTY_IFRAME_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );

package.json

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

src/blockparty-iframe/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/iframe",
5-
"version": "1.0.1",
5+
"version": "1.0.2",
66
"title": "Iframe",
77
"category": "widgets",
88
"description": "Display an embedded frame.",

0 commit comments

Comments
 (0)