Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .plugin-data
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.1.0",
"version": "2.1.1",
"slug": "blockparty-faq"
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

- Performance improvements removed script blocking time.

## [2.1.0] - 2026-06-30

### Added
Expand Down
4 changes: 2 additions & 2 deletions blockparty-faq.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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__ ) );
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -35,4 +35,4 @@
"volta": {
"node": "20.12.0"
}
}
}
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
Expand Down
6 changes: 4 additions & 2 deletions src/faq-answer/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 4 additions & 2 deletions src/faq-item/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
18 changes: 14 additions & 4 deletions src/faq-question/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -28,7 +32,13 @@
"headingLevel": {
"type": "number",
"default": 3,
"enum": [ 2, 3, 4, 5, 6 ]
"enum": [
2,
3,
4,
5,
6
]
}
},
"textdomain": "blockparty-faq",
Expand Down
10 changes: 8 additions & 2 deletions src/faq/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand All @@ -18,7 +18,13 @@
"headingLevel": {
"type": "number",
"default": 3,
"enum": [ 2, 3, 4, 5, 6 ]
"enum": [
2,
3,
4,
5,
6
]
}
},
"providesContext": {
Expand Down
Loading