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": "1.1.0",
"version": "1.2.0",
"slug": "blockparty-accordion"
}
2 changes: 1 addition & 1 deletion .wordpress-org/blueprints/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"pluginData": {
"resource": "git:directory",
"url": "https://github.com/BeAPI/blockparty-accordion",
"ref": "1.1.0",
"ref": "1.2.0",
"refType": "tag"
},
"options": {
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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).

## 1.2.0 - 2026-04-21

- Clarify block inserter descriptions; refresh French translations (POT, PO, MO, and Jed JSON)
- Add WordPress Playground blueprint and README badge for the plugin directory
- Update block icons (`@beapi/icons`, `@wordpress/icons`) and block entry scripts
- Developer tooling: Volta Node pin; add `@typescript-eslint` packages for ESLint; run JS quality workflow when `package.json` changes

## 1.1.0 - 2026-02-18

- Support for `blockparty/icons` block
Expand Down
4 changes: 2 additions & 2 deletions blockparty-accordion.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: Accessible Accordion block for WordPress editor.
* Requires at least: 6.2
* Requires PHP: 8.1
* Version: 1.1.0
* Version: 1.2.0
* Author: Be API Technical team
* Author URI: https://beapi.fr
* License: GPL-2.0-or-later
Expand All @@ -15,7 +15,7 @@

namespace Blockparty\Accordion;

define( 'BLOCKPARTY_ACCORDION_VERSION', '1.1.0' );
define( 'BLOCKPARTY_ACCORDION_VERSION', '1.2.0' );
define( 'BLOCKPARTY_ACCORDION_URL', plugin_dir_url( __FILE__ ) );
define( 'BLOCKPARTY_ACCORDION_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLOCKPARTY_ACCORDION_PLUGIN_DIRNAME', plugin_basename( __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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockparty-accordion",
"version": "1.0.9",
"version": "1.2.0",
"description": "Accessible Accordion block for WordPress",
"author": "Be API Technical team",
"license": "GPL-2.0-or-later",
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: Be API Technical team
Tags: block
Tested up to: 6.0
Stable tag: 1.1.0
Stable tag: 1.2.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -31,6 +31,13 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove

== Changelog ==

= 1.2.0 =

* Clarify block inserter descriptions and refresh French translations
* Add WordPress Playground blueprint and README badge for wordpress.org
* Update block icons (`@beapi/icons`, `@wordpress/icons`) and related scripts
* Developer: Volta Node pin, TypeScript ESLint packages for ESLint, JS workflow triggers on `package.json` changes

= 1.1.0 =

* Support for `blockparty/icons` block
Expand Down
11 changes: 8 additions & 3 deletions src/blockparty-accordion-item/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,20 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/accordion-item",
"parent": ["blockparty/accordion"],
"version": "1.1.0",
"parent": [
"blockparty/accordion"
],
"version": "1.2.0",
"title": "Item",
"category": "widgets",
"description": "Element of the accordion block.",
"supports": {
"html": false,
"anchor": false,
"align": ["wide", "full"],
"align": [
"wide",
"full"
],
"reusable": false,
"color": {
"background": true,
Expand Down
11 changes: 8 additions & 3 deletions src/blockparty-accordion-panel/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,20 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/accordion-panel",
"parent": ["blockparty/accordion-item"],
"version": "1.1.0",
"parent": [
"blockparty/accordion-item"
],
"version": "1.2.0",
"title": "Panel",
"category": "widgets",
"description": "Contains the hidden or revealed content of the accordion item.",
"supports": {
"html": false,
"anchor": false,
"align": ["wide", "full"],
"align": [
"wide",
"full"
],
"reusable": false,
"color": {
"background": true,
Expand Down
11 changes: 8 additions & 3 deletions src/blockparty-accordion-summary/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,20 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/accordion-summary",
"parent": ["blockparty/accordion-item"],
"version": "1.1.0",
"parent": [
"blockparty/accordion-item"
],
"version": "1.2.0",
"title": "Summary",
"category": "widgets",
"description": "Title of the accordion item.",
"supports": {
"html": false,
"anchor": false,
"align": ["wide", "full"],
"align": [
"wide",
"full"
],
"lock": true,
"reusable": false,
"color": {
Expand Down
7 changes: 5 additions & 2 deletions src/blockparty-accordion/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": 2,
"name": "blockparty/accordion",
"version": "1.1.0",
"version": "1.2.0",
"title": "Accordion",
"category": "widgets",
"description": "Display a list of elements that can be expanded and collapsed.",
Expand All @@ -15,7 +15,10 @@
"supports": {
"html": false,
"anchor": true,
"align": ["wide", "full"],
"align": [
"wide",
"full"
],
"color": {
"background": true,
"text": true
Expand Down
Loading