Skip to content

Commit 1343b64

Browse files
committed
fix: plugin version
1 parent 512e602 commit 1343b64

9 files changed

Lines changed: 36 additions & 22 deletions

File tree

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,3 @@ Yoast SEO is required for the FAQ schema (JSON-LD) generation. It is installed a
9090
- Add spacing support for answers
9191
- Add font size support for the question
9292
- Strip HTML tags from the question in structured data
93-
94-
### 2.0.4 - 2026-06-26
95-
96-
- Refactor block markup to align with `blockparty-accordion` structure (`wp-block-blockparty-faq-*` classes)
97-
- Add CSS custom properties for styling (`--wp--blockparty--faq--*`)
98-
- Add deprecated handlers for 2.0.x markup retrocompatibility

blockparty-faq.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Description: A FAQ block for WordPress Editor that provided structured data based on FAQ schema.
55
* Requires at least: 6.2
66
* Requires PHP: 8.1
7-
* Version: 2.0.4
7+
* Version: 2.0.3
88
* Plugin URI: https://beapi.fr
99
* Author: Be API Technical team
1010
* Author URI: https://beapi.fr
@@ -41,7 +41,7 @@
4141
}
4242

4343
// Plugin constants
44-
define( 'BLOCKPARTY_FAQ_VERSION', '2.0.4' );
44+
define( 'BLOCKPARTY_FAQ_VERSION', '2.0.3' );
4545

4646
// Plugin URL and PATH
4747
define( 'BLOCKPARTY_FAQ_DIR', plugin_dir_path( __FILE__ ) );

languages/blockparty-faq.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPL-2.0-or-later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Blockparty FAQ 2.0.4\n"
5+
"Project-Id-Version: Blockparty FAQ 2.0.3\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockparty-faq\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <LL@li.org>\n"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blockparty-faq",
3-
"version": "2.0.4",
3+
"version": "2.0.3",
44
"description": "SEO friendly FAQ module in an accessible accordion",
55
"author": "Be API Technical team",
66
"license": "GPL-2.0-or-later",

src/faq-answer/block.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 3,
44
"name": "blockparty/faq-answer",
5-
"version": "2.0.4",
5+
"version": "2.0.3",
66
"title": "FAQ Answer",
77
"category": "design",
8-
"parent": [ "blockparty/faq-item" ],
8+
"parent": [
9+
"blockparty/faq-item"
10+
],
911
"description": "Content of the FAQ answer.",
1012
"supports": {
1113
"html": false,

src/faq-item/block.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 3,
44
"name": "blockparty/faq-item",
5-
"version": "2.0.4",
5+
"version": "2.0.3",
66
"title": "FAQ Item",
77
"category": "design",
8-
"parent": [ "blockparty/faq" ],
8+
"parent": [
9+
"blockparty/faq"
10+
],
911
"description": "A FAQ item containing a question and an answer.",
1012
"supports": {
1113
"html": false,

src/faq-question/block.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 3,
44
"name": "blockparty/faq-question",
5-
"version": "2.0.4",
5+
"version": "2.0.3",
66
"title": "FAQ Question",
77
"category": "design",
8-
"parent": [ "blockparty/faq-item" ],
8+
"parent": [
9+
"blockparty/faq-item"
10+
],
911
"description": "Content of the FAQ question.",
10-
"usesContext": [ "blockparty/headingLevel" ],
12+
"usesContext": [
13+
"blockparty/headingLevel"
14+
],
1115
"supports": {
1216
"html": false,
1317
"inserter": false,
@@ -28,7 +32,13 @@
2832
"headingLevel": {
2933
"type": "number",
3034
"default": 3,
31-
"enum": [ 2, 3, 4, 5, 6 ]
35+
"enum": [
36+
2,
37+
3,
38+
4,
39+
5,
40+
6
41+
]
3242
}
3343
},
3444
"textdomain": "blockparty-faq",

src/faq/block.json

Lines changed: 8 additions & 2 deletions
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/faq",
5-
"version": "2.0.4",
5+
"version": "2.0.3",
66
"title": "FAQ",
77
"category": "design",
88
"description": "A FAQ block for WordPress Editor that provided structured data based on FAQ schema.",
@@ -18,7 +18,13 @@
1818
"headingLevel": {
1919
"type": "number",
2020
"default": 3,
21-
"enum": [ 2, 3, 4, 5, 6 ]
21+
"enum": [
22+
2,
23+
3,
24+
4,
25+
5,
26+
6
27+
]
2228
}
2329
},
2430
"providesContext": {

0 commit comments

Comments
 (0)