From 8a0b1d52d90c4ac255f29e0a28f34e58d74c9c38 Mon Sep 17 00:00:00 2001 From: mricoul Date: Thu, 20 Aug 2026 14:22:15 +0200 Subject: [PATCH] chore: bump version to 1.0.2 --- .plugin-data | 2 +- .wordpress-org/blueprints/blueprint.json | 2 +- CHANGELOG.md | 4 ++++ blockparty-anchors.php | 4 ++-- languages/blockparty-anchors-fr_FR.po | 2 +- languages/blockparty-anchors.pot | 2 +- package-lock.json | 4 ++-- package.json | 2 +- readme.txt | 5 ++++- src/anchor/block.json | 2 +- src/anchors-list/block.json | 2 +- 11 files changed, 19 insertions(+), 12 deletions(-) diff --git a/.plugin-data b/.plugin-data index 8bec436..c8e06bf 100644 --- a/.plugin-data +++ b/.plugin-data @@ -1,4 +1,4 @@ { - "version": "1.0.1", + "version": "1.0.2", "slug": "blockparty-anchors" } diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json index c75e96e..44553e2 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-anchors", - "ref": "1.0.1", + "ref": "1.0.2", "refType": "tag" }, "options": { diff --git a/CHANGELOG.md b/CHANGELOG.md index ef427f0..b8e7337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to Blockparty Anchors are documented in this file. +## 1.0.2 + +- Add frontend scroll-spy on the Anchors List block, with an `is-active` state, smooth in-page scrolling, URL hash sync, and sticky position support. + ## 1.0.1 - Collect anchors from block theme templates and template parts in document order, including content rendered via `core/post-content`. diff --git a/blockparty-anchors.php b/blockparty-anchors.php index d9bf054..b0a764a 100644 --- a/blockparty-anchors.php +++ b/blockparty-anchors.php @@ -2,7 +2,7 @@ /** * Plugin Name: Blockparty Anchors * Description: Adds two new blocks to the WordPress editor: an anchor block to create an anchor system on your pages, and an anchor list block to list those anchors. - * Version: 1.0.1 + * Version: 1.0.2 * Requires at least: 6.8 * Requires PHP: 8.1 * Author: Be API Technical Team @@ -24,7 +24,7 @@ include_once __DIR__ . '/vendor/autoload.php'; } -define( 'BLOCKPARTY_ANCHORS_VERSION', '1.0.1' ); +define( 'BLOCKPARTY_ANCHORS_VERSION', '1.0.2' ); define( 'BLOCKPARTY_ANCHORS_URL', plugin_dir_url( __FILE__ ) ); define( 'BLOCKPARTY_ANCHORS_DIR', plugin_dir_path( __FILE__ ) ); define( 'BLOCKPARTY_ANCHORS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); diff --git a/languages/blockparty-anchors-fr_FR.po b/languages/blockparty-anchors-fr_FR.po index 9dbdc5f..ba1b7f5 100644 --- a/languages/blockparty-anchors-fr_FR.po +++ b/languages/blockparty-anchors-fr_FR.po @@ -2,7 +2,7 @@ # This file is distributed under the GPL-2.0-or-later. msgid "" msgstr "" -"Project-Id-Version: Blockparty Anchors 1.0.1\n" +"Project-Id-Version: Blockparty Anchors 1.0.2\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockparty-" "anchors\n" "POT-Creation-Date: 2026-07-09T09:18:45+00:00\n" diff --git a/languages/blockparty-anchors.pot b/languages/blockparty-anchors.pot index e61d35a..c807c07 100644 --- a/languages/blockparty-anchors.pot +++ b/languages/blockparty-anchors.pot @@ -2,7 +2,7 @@ # This file is distributed under the GPL-2.0-or-later. msgid "" msgstr "" -"Project-Id-Version: Blockparty Anchors 1.0.1\n" +"Project-Id-Version: Blockparty Anchors 1.0.2\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockparty-anchors\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/package-lock.json b/package-lock.json index e28b564..2c9d71d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "blockparty-anchors", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "blockparty-anchors", - "version": "1.0.1", + "version": "1.0.2", "license": "GPL-2.0-or-later", "dependencies": { "@beapi/icons": "1.2.7", diff --git a/package.json b/package.json index ec4adbc..ce3bfa0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "blockparty-anchors", - "version": "1.0.1", + "version": "1.0.2", "description": "Adds two new blocks to the WordPress editor: an anchor block to create an anchor system on your pages, and an anchor list block to list those anchors.", "author": "Be API", "license": "GPL-2.0-or-later", diff --git a/readme.txt b/readme.txt index 3263787..9932421 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: block, gutenberg, anchor, navigation, table of contents Requires at least: 6.8 Tested up to: 6.8 Requires PHP: 8.1 -Stable tag: 1.0.1 +Stable tag: 1.0.2 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -96,6 +96,9 @@ Yes. Anchor blocks are collected recursively, including when placed inside colum == Changelog == += 1.0.2 = +* Add frontend scroll-spy on the Anchors List block, with an is-active state, smooth in-page scrolling, URL hash sync, and sticky position support. + = 1.0.1 = * Collect anchors from block theme templates and template parts in document order, including content rendered via core/post-content. diff --git a/src/anchor/block.json b/src/anchor/block.json index 25e1204..581939e 100644 --- a/src/anchor/block.json +++ b/src/anchor/block.json @@ -2,7 +2,7 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 3, "name": "blockparty/anchor", - "version": "1.0.1", + "version": "1.0.2", "title": "Anchor", "category": "widgets", "description": "Place an anchor on your page. It will be listed in the anchor list block.", diff --git a/src/anchors-list/block.json b/src/anchors-list/block.json index 4de1e2a..9f49420 100644 --- a/src/anchors-list/block.json +++ b/src/anchors-list/block.json @@ -2,7 +2,7 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 3, "name": "blockparty/anchors-list", - "version": "1.0.1", + "version": "1.0.2", "title": "Anchors List", "category": "widgets", "description": "Displays the list of anchors placed on your page.",