From 78333cbc22e1df5a1920ee75700ae64b24999b53 Mon Sep 17 00:00:00 2001 From: Paolo Tesei Date: Tue, 4 Aug 2026 16:01:25 +0200 Subject: [PATCH 1/2] feat release 2.1.1 # Conflicts: # README.md --- .plugin-data | 2 +- CHANGELOG.md | 6 ++++++ blockparty-faq.php | 4 ++-- package-lock.json | 4 ++-- package.json | 4 ++-- readme.txt | 8 +++++++- src/faq-answer/block.json | 6 ++++-- src/faq-item/block.json | 6 ++++-- src/faq-question/block.json | 18 ++++++++++++++---- src/faq/block.json | 10 ++++++++-- 10 files changed, 50 insertions(+), 18 deletions(-) diff --git a/.plugin-data b/.plugin-data index 8bc87bb..fdbda80 100644 --- a/.plugin-data +++ b/.plugin-data @@ -1,4 +1,4 @@ { - "version": "2.1.0", + "version": "2.1.1", "slug": "blockparty-faq" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bfa564..ee828f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.1.1] - 2026-08-04 + +### Changed + +- TBD + ## [2.1.0] - 2026-06-30 ### Added diff --git a/blockparty-faq.php b/blockparty-faq.php index 6c1174e..ba57330 100644 --- a/blockparty-faq.php +++ b/blockparty-faq.php @@ -4,7 +4,7 @@ * Description: A FAQ block for WordPress Editor that provided structured data based on FAQ schema. * Requires at least: 6.2 * Requires PHP: 8.1 - * Version: 2.1.0 + * Version: 2.1.1 * Plugin URI: https://beapi.fr * Author: Be API Technical team * Author URI: https://beapi.fr @@ -45,7 +45,7 @@ } // Plugin constants -define( 'BLOCKPARTY_FAQ_VERSION', '2.1.0' ); +define( 'BLOCKPARTY_FAQ_VERSION', '2.1.1' ); // Plugin URL and PATH define( 'BLOCKPARTY_FAQ_DIR', plugin_dir_path( __FILE__ ) ); diff --git a/package-lock.json b/package-lock.json index 42a09a5..877ac3c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "blockparty-faq", - "version": "2.1.0", + "version": "2.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "blockparty-faq", - "version": "2.1.0", + "version": "2.1.1", "license": "GPL-2.0-or-later", "dependencies": { "@beapi/be-a11y": "^1.7.2", diff --git a/package.json b/package.json index 5ba1142..4739d74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "blockparty-faq", - "version": "2.1.0", + "version": "2.1.1", "description": "SEO friendly FAQ module in an accessible accordion", "author": "Be API Technical team", "license": "GPL-2.0-or-later", @@ -35,4 +35,4 @@ "volta": { "node": "20.12.0" } -} \ No newline at end of file +} diff --git a/readme.txt b/readme.txt index 02056ca..f4c5fc1 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: block, faq, accordion, gutenberg, schema, seo, accessibility Requires at least: 6.2 Tested up to: 6.8 Requires PHP: 8.1 -Stable tag: 2.1.0 +Stable tag: 2.1.1 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -57,6 +57,9 @@ Yes. The front-end accordion uses `@beapi/be-a11y` with proper ARIA attributes ( == Changelog == += 2.1.1 - 2026-08-04 = +* Performance improvements removed script blocking time. + = 2.1.0 - 2026-06-30 = * Added configurable FAQ question heading level (h2–h6). * Added Rank Math SEO integration for FAQ structured data. @@ -106,6 +109,9 @@ Yes. The front-end accordion uses `@beapi/be-a11y` with proper ARIA attributes ( == Upgrade Notice == += 2.1.1 = +TBD + = 2.1.0 = Adds Rank Math and SEOPress support, configurable question heading levels, and updated block markup. Existing content is preserved via deprecated save handlers. diff --git a/src/faq-answer/block.json b/src/faq-answer/block.json index 69f4061..1f88f5b 100644 --- a/src/faq-answer/block.json +++ b/src/faq-answer/block.json @@ -2,10 +2,12 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 3, "name": "blockparty/faq-answer", - "version": "2.1.0", + "version": "2.1.1", "title": "FAQ Answer", "category": "design", - "parent": [ "blockparty/faq-item" ], + "parent": [ + "blockparty/faq-item" + ], "description": "Content of the FAQ answer.", "supports": { "html": false, diff --git a/src/faq-item/block.json b/src/faq-item/block.json index 97292d5..b45013d 100644 --- a/src/faq-item/block.json +++ b/src/faq-item/block.json @@ -2,10 +2,12 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 3, "name": "blockparty/faq-item", - "version": "2.1.0", + "version": "2.1.1", "title": "FAQ Item", "category": "design", - "parent": [ "blockparty/faq" ], + "parent": [ + "blockparty/faq" + ], "description": "A FAQ item containing a question and an answer.", "supports": { "html": false, diff --git a/src/faq-question/block.json b/src/faq-question/block.json index 9a21948..7ff59d7 100644 --- a/src/faq-question/block.json +++ b/src/faq-question/block.json @@ -2,12 +2,16 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 3, "name": "blockparty/faq-question", - "version": "2.1.0", + "version": "2.1.1", "title": "FAQ Question", "category": "design", - "parent": [ "blockparty/faq-item" ], + "parent": [ + "blockparty/faq-item" + ], "description": "Content of the FAQ question.", - "usesContext": [ "blockparty/headingLevel" ], + "usesContext": [ + "blockparty/headingLevel" + ], "supports": { "html": false, "inserter": false, @@ -28,7 +32,13 @@ "headingLevel": { "type": "number", "default": 3, - "enum": [ 2, 3, 4, 5, 6 ] + "enum": [ + 2, + 3, + 4, + 5, + 6 + ] } }, "textdomain": "blockparty-faq", diff --git a/src/faq/block.json b/src/faq/block.json index 0507dec..ba4cecf 100644 --- a/src/faq/block.json +++ b/src/faq/block.json @@ -2,7 +2,7 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 3, "name": "blockparty/faq", - "version": "2.1.0", + "version": "2.1.1", "title": "FAQ", "category": "design", "description": "A FAQ block for WordPress Editor that provided structured data based on FAQ schema.", @@ -18,7 +18,13 @@ "headingLevel": { "type": "number", "default": 3, - "enum": [ 2, 3, 4, 5, 6 ] + "enum": [ + 2, + 3, + 4, + 5, + 6 + ] } }, "providesContext": { From c43358749c189c045011f2260adc39d17f229a6e Mon Sep 17 00:00:00 2001 From: Paolo Tesei Date: Wed, 5 Aug 2026 09:31:49 +0200 Subject: [PATCH 2/2] clean changelog --- CHANGELOG.md | 2 +- readme.txt | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee828f2..77c9f73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- TBD +- Performance improvements removed script blocking time. ## [2.1.0] - 2026-06-30 diff --git a/readme.txt b/readme.txt index f4c5fc1..e70c5ea 100644 --- a/readme.txt +++ b/readme.txt @@ -109,9 +109,6 @@ Yes. The front-end accordion uses `@beapi/be-a11y` with proper ARIA attributes ( == Upgrade Notice == -= 2.1.1 = -TBD - = 2.1.0 = Adds Rank Math and SEOPress support, configurable question heading levels, and updated block markup. Existing content is preserved via deprecated save handlers.