diff --git a/.plugin-data b/.plugin-data index 61b5eb6..5272957 100644 --- a/.plugin-data +++ b/.plugin-data @@ -1,4 +1,4 @@ { - "version": "1.1.0", + "version": "1.2.0", "slug": "blockparty-accordion" } diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json index f4f5cce..8d839ce 100644 --- a/.wordpress-org/blueprints/blueprint.json +++ b/.wordpress-org/blueprints/blueprint.json @@ -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": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 84d2958..d75155c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/blockparty-accordion.php b/blockparty-accordion.php index f31332f..d416d2c 100644 --- a/blockparty-accordion.php +++ b/blockparty-accordion.php @@ -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 @@ -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__ ) ); diff --git a/package-lock.json b/package-lock.json index 59c9c85..013171d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "blockparty-accordion", - "version": "1.0.9", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "blockparty-accordion", - "version": "1.0.9", + "version": "1.2.0", "license": "GPL-2.0-or-later", "dependencies": { "@beapi/be-a11y": "^1.7.3", diff --git a/package.json b/package.json index d842f7d..942d65c 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/readme.txt b/readme.txt index 261ff42..0c872c5 100644 --- a/readme.txt +++ b/readme.txt @@ -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 @@ -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 diff --git a/src/blockparty-accordion-item/block.json b/src/blockparty-accordion-item/block.json index 119fb20..3efdee2 100644 --- a/src/blockparty-accordion-item/block.json +++ b/src/blockparty-accordion-item/block.json @@ -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, diff --git a/src/blockparty-accordion-panel/block.json b/src/blockparty-accordion-panel/block.json index cb6483b..4da06e9 100644 --- a/src/blockparty-accordion-panel/block.json +++ b/src/blockparty-accordion-panel/block.json @@ -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, diff --git a/src/blockparty-accordion-summary/block.json b/src/blockparty-accordion-summary/block.json index 43c0774..24c33b9 100644 --- a/src/blockparty-accordion-summary/block.json +++ b/src/blockparty-accordion-summary/block.json @@ -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": { diff --git a/src/blockparty-accordion/block.json b/src/blockparty-accordion/block.json index 05de437..5da0950 100644 --- a/src/blockparty-accordion/block.json +++ b/src/blockparty-accordion/block.json @@ -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.", @@ -15,7 +15,10 @@ "supports": { "html": false, "anchor": true, - "align": ["wide", "full"], + "align": [ + "wide", + "full" + ], "color": { "background": true, "text": true