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.8",
"version": "1.0.9",
"slug": "blockparty-accordion"
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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.0.9 - 2026-02-09

- Fix translations

## 1.0.8 - 2026-02-09

- Add option to open the first item by default
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.8
* Version: 1.0.9
* 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.8' );
define( 'BLOCKPARTY_ACCORDION_VERSION', '1.0.9' );
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 languages/blockparty-accordion.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the GPL-2.0-or-later.
msgid ""
msgstr ""
"Project-Id-Version: Blockparty Accordion 1.0.8\n"
"Project-Id-Version: Blockparty Accordion 1.0.9\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockparty-accordion\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2026-02-09T09:49:54+00:00\n"
"POT-Creation-Date: 2026-02-09T12:01:20+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.12.0\n"
"X-Domain: blockparty-accordion\n"
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.8",
"version": "1.0.9",
"description": "Accessible Accordion block for WordPress",
"author": "Be API Technical team",
"license": "GPL-2.0-or-later",
Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove

== Changelog ==

= 1.0.9 =

* Fix translations

= 1.0.8 =

* Add option to open the first item by default
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 @@ -5,7 +5,7 @@
"parent": [
"blockparty/accordion"
],
"version": "1.0.8",
"version": "1.0.9",
"title": "Item",
"category": "widgets",
"description": "Accessible accordion block item.",
Expand Down
2 changes: 1 addition & 1 deletion src/blockparty-accordion-panel/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"parent": [
"blockparty/accordion-item"
],
"version": "1.0.8",
"version": "1.0.9",
"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 @@ -5,7 +5,7 @@
"parent": [
"blockparty/accordion-item"
],
"version": "1.0.8",
"version": "1.0.9",
"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.8",
"version": "1.0.9",
"title": "Accordion",
"category": "widgets",
"description": "Accessible accordion block.",
Expand Down
Loading