From ed0baf60872dd7f6deed495572c6658fa41fdf36 Mon Sep 17 00:00:00 2001 From: Tsvetan Stoychev Date: Fri, 21 Aug 2026 11:55:31 +0200 Subject: [PATCH] Prepare version 0.0.9 release --- AGENTS.md | 6 +++--- plugins/basicrum/basicrum.php | 4 ++-- plugins/basicrum/languages/basicrum.pot | 2 +- plugins/basicrum/readme.txt | 5 ++++- plugins/basicrum/tests/unit-bootstrap.php | 2 +- plugins/basicrum/tests/unit/AssetsTest.php | 2 +- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 75776f0..4ffe0fe 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -19,9 +19,9 @@ namespace, PSR-4 Composer autoloading, PHP 7.4+, and WordPress 6.0+. - Settings use the `basicrum_settings` option. Keep defaults, UI, and sanitization in sync in `Helpers`, `Admin\Settings\Page`, and `Admin\Settings\Validate`. -- Version `0.0.8` is the first public release and has no upgrade migrations. - After it is published, use version-gated, idempotent migrations only when a - stored schema change requires one. +- Version `0.0.8` is the first public release. Version `0.0.9` is current; + neither release requires an upgrade migration. Use version-gated, idempotent + migrations only when a future stored schema change requires one. ## Project Skills diff --git a/plugins/basicrum/basicrum.php b/plugins/basicrum/basicrum.php index 47eef80..f2e6cfc 100644 --- a/plugins/basicrum/basicrum.php +++ b/plugins/basicrum/basicrum.php @@ -3,7 +3,7 @@ * Plugin Name: Basicrum - Real User Monitoring * Plugin URI: https://www.basicrum.com/ * Description: Privacy-first Real User Monitoring with consent-controlled loading, page types, and Web Vitals. - * Version: 0.0.8 + * Version: 0.0.9 * Author: Tsvetan Stoychev * Author URI: https://www.basicrum.com/contact/ * License: GPLv2 or later @@ -19,7 +19,7 @@ } // Plugin constants. -define( 'BASICRUM_VERSION', '0.0.8' ); +define( 'BASICRUM_VERSION', '0.0.9' ); define( 'BASICRUM_PLUGIN_FILE', __FILE__ ); define( 'BASICRUM_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); diff --git a/plugins/basicrum/languages/basicrum.pot b/plugins/basicrum/languages/basicrum.pot index 0731cc6..7763156 100644 --- a/plugins/basicrum/languages/basicrum.pot +++ b/plugins/basicrum/languages/basicrum.pot @@ -2,7 +2,7 @@ # This file is distributed under the GPLv2 or later. msgid "" msgstr "" -"Project-Id-Version: Basicrum - Real User Monitoring 0.0.8\n" +"Project-Id-Version: Basicrum - Real User Monitoring 0.0.9\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/basicrum\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/basicrum/readme.txt b/plugins/basicrum/readme.txt index c57ec5a..a976881 100644 --- a/plugins/basicrum/readme.txt +++ b/plugins/basicrum/readme.txt @@ -4,7 +4,7 @@ Tags: analytics, performance, rum, real-user-monitoring, web-vitals Requires at least: 6.0 Tested up to: 7.1 Requires PHP: 7.4 -Stable tag: 0.0.8 +Stable tag: 0.0.9 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -112,5 +112,8 @@ Use the Support tab on WordPress.org, open a [GitHub issue](https://github.com/b == Changelog == += 0.0.9 = +* Updated development and test dependencies, aligned licensing metadata for WordPress.org submission, and synchronized Playwright test images. + = 0.0.8 = * First public release with consent-controlled monitoring, WordPress and WooCommerce page types, query-string redaction, privacy-policy guidance, and caching-plugin exclusions. diff --git a/plugins/basicrum/tests/unit-bootstrap.php b/plugins/basicrum/tests/unit-bootstrap.php index 8eafd78..f3a80b2 100644 --- a/plugins/basicrum/tests/unit-bootstrap.php +++ b/plugins/basicrum/tests/unit-bootstrap.php @@ -14,7 +14,7 @@ } if ( ! defined( 'BASICRUM_VERSION' ) ) { - define( 'BASICRUM_VERSION', '0.0.8' ); + define( 'BASICRUM_VERSION', '0.0.9' ); } if ( ! defined( 'BASICRUM_PLUGIN_FILE' ) ) { diff --git a/plugins/basicrum/tests/unit/AssetsTest.php b/plugins/basicrum/tests/unit/AssetsTest.php index c20991c..c15271d 100644 --- a/plugins/basicrum/tests/unit/AssetsTest.php +++ b/plugins/basicrum/tests/unit/AssetsTest.php @@ -24,7 +24,7 @@ protected function set_up() { parent::set_up(); if ( ! defined( 'BASICRUM_VERSION' ) ) { - define( 'BASICRUM_VERSION', '0.0.8' ); + define( 'BASICRUM_VERSION', '0.0.9' ); } if ( ! defined( 'BASICRUM_PLUGIN_FILE' ) ) {