Skip to content

Commit c54da18

Browse files
authored
Merge pull request #22 from BeAPI/ver/1.1.0
Release 1.1.0
2 parents 38dade6 + b5fc58f commit c54da18

10 files changed

Lines changed: 17 additions & 9 deletions

File tree

.plugin-data

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.0.6",
2+
"version": "1.1.0",
33
"slug": "blockparty-tabs"
44
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 1.1.0 - 2026-02-18
9+
10+
- Support for `blockparty/icons` block
11+
812
## 1.0.6 - 2026-02-11
913

1014
- Update view and edit script to allow to use nested tabs block (tabs inside tab panel).

blockparty-tabs.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Description: Accessible Tabs block for WordPress gutenberg.
55
* Requires at least: 6.2
66
* Requires PHP: 8.1
7-
* Version: 1.0.6
7+
* Version: 1.1.0
88
* Author: Be API Technical team
99
* Author URI: https://beapi.fr
1010
* License: GPL-2.0-or-later
@@ -14,7 +14,7 @@
1414

1515
namespace Blockparty\Tabs;
1616

17-
define( 'BLOCKPARTY_TABS_VERSION', '1.0.6' );
17+
define( 'BLOCKPARTY_TABS_VERSION', '1.1.0' );
1818
define( 'BLOCKPARTY_TABS_URL', plugin_dir_url( __FILE__ ) );
1919
define( 'BLOCKPARTY_TABS_DIR', plugin_dir_path( __FILE__ ) );
2020
define( 'BLOCKPARTY_TABS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blockparty-tabs",
3-
"version": "1.0.6",
3+
"version": "1.1.0",
44
"description": "Accessible tabs block for WordPress",
55
"author": "Be API Technical team",
66
"license": "GPL-2.0-or-later",

readme.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove
3131

3232
== Changelog ==
3333

34+
= 1.1.0 =
35+
36+
* Support for `blockparty/icons` block
37+
3438
= 1.0.6 =
3539

3640
* Update view and edit script to allow to use nested tabs block (tabs inside tab panel).

src/blockparty-tabs-nav-item/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "blockparty/tabs-nav-item",
5-
"version": "1.0.6",
5+
"version": "1.1.0",
66
"title": "Tab",
77
"category": "widgets",
88
"description": "Accessible tabs block item",

src/blockparty-tabs-nav/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "blockparty/tabs-nav",
5-
"version": "1.0.6",
5+
"version": "1.1.0",
66
"title": "Tabs list",
77
"category": "widgets",
88
"description": "Accessible tabs block item",

src/blockparty-tabs-panel-item/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "blockparty/tabs-panel-item",
5-
"version": "1.0.6",
5+
"version": "1.1.0",
66
"title": "Panel",
77
"category": "widgets",
88
"icon": "layout",

src/blockparty-tabs-panels/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "blockparty/tabs-panels",
5-
"version": "1.0.6",
5+
"version": "1.1.0",
66
"title": "Panels",
77
"category": "widgets",
88
"description": "Accessible tabs block item",

src/blockparty-tabs/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "blockparty/tabs",
5-
"version": "1.0.6",
5+
"version": "1.1.0",
66
"title": "Tabs",
77
"category": "widgets",
88
"description": "Accessible tabs block",

0 commit comments

Comments
 (0)