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
6 changes: 3 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions plugins/basicrum/basicrum.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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__ ) );

Expand Down
2 changes: 1 addition & 1 deletion plugins/basicrum/languages/basicrum.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
5 changes: 4 additions & 1 deletion plugins/basicrum/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
2 changes: 1 addition & 1 deletion plugins/basicrum/tests/unit-bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' ) ) {
Expand Down
2 changes: 1 addition & 1 deletion plugins/basicrum/tests/unit/AssetsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' ) ) {
Expand Down