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.0.9",
"version": "1.1.0",
"slug": "blockparty-accordion"
}
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.1.0 - 2026-02-18

- Support for `blockparty/icons` block
- Update accordion item icon

- Fix translations

## 1.0.9 - 2026-02-09

- Fix translations
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.0.9
* Version: 1.1.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.0.9' );
define( 'BLOCKPARTY_ACCORDION_VERSION', '1.1.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
8 changes: 4 additions & 4 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
Expand Up @@ -28,7 +28,7 @@
},
"dependencies": {
"@beapi/be-a11y": "^1.7.3",
"@beapi/icons": "^1.2.5",
"@beapi/icons": "^1.2.6",
"@wordpress/components": "^27.2.0",
"@wordpress/data": "^9.24.0",
"@wordpress/icons": "^11.6.0",
Expand Down
7 changes: 6 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.0.0
Stable tag: 1.1.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,11 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove

== Changelog ==

= 1.1.0 =

* Support for `blockparty/icons` block
* Update accordion item icon

= 1.0.9 =

* Fix translations
Expand Down
2 changes: 1 addition & 1 deletion src/blockparty-accordion-item/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"apiVersion": 2,
"name": "blockparty/accordion-item",
"parent": ["blockparty/accordion"],
"version": "1.0.9",
"version": "1.1.0",
"title": "Item",
"category": "widgets",
"description": "Accessible accordion block item.",
Expand Down
4 changes: 2 additions & 2 deletions src/blockparty-accordion-item/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { registerBlockType } from '@wordpress/blocks';
import Edit from './edit';
import save from './save';
import metadata from './block.json';
import { button } from '@wordpress/icons';
import { item } from '@beapi/icons';

registerBlockType(metadata.name, {
icon: button,
icon: item,
edit: Edit,
save,
});
2 changes: 1 addition & 1 deletion src/blockparty-accordion-panel/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"apiVersion": 2,
"name": "blockparty/accordion-panel",
"parent": ["blockparty/accordion-item"],
"version": "1.0.9",
"version": "1.1.0",
"title": "Panel",
"category": "widgets",
"description": "Accessible accordion block panel.",
Expand Down
2 changes: 1 addition & 1 deletion src/blockparty-accordion-summary/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"apiVersion": 2,
"name": "blockparty/accordion-summary",
"parent": ["blockparty/accordion-item"],
"version": "1.0.9",
"version": "1.1.0",
"title": "Summary",
"category": "widgets",
"description": "Accessible accordion block summary.",
Expand Down
2 changes: 1 addition & 1 deletion 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.0.9",
"version": "1.1.0",
"title": "Accordion",
"category": "widgets",
"description": "Accessible accordion block.",
Expand Down
Loading