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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wpcomsp-simple-events",
"version": "2.0.0",
"version": "2.0.1",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Version bump looks correct – remember the lock-file

The "version" field is now 2.0.1, matching the PHP constant.
If a package-lock.json (or pnpm-lock.yaml, etc.) exists in the repo, regenerate & commit it so that CI and downstream consumers stay in sync.

You can quickly confirm no stale 2.0.0 remains in JS/JSON files with:


🏁 Script executed:

#!/bin/bash
rg -n '"2\.0\.0"' --type json --type js

Length of output: 3237


Regenerate & Commit the Updated Lock File

Our search shows numerous stale 2.0.0 entries still present in package-lock.json. Please run your package manager’s install command (e.g. npm install or pnpm install) to regenerate package-lock.json so that all versions align with the new "version": "2.0.1", then commit the updated lock file.

• file: package-lock.json — contains multiple "version": "2.0.0" entries that need to be bumped to 2.0.1

🤖 Prompt for AI Agents
In package.json at line 3, the version was updated to 2.0.1 but
package-lock.json still contains stale 2.0.0 entries. Run your package manager's
install command (e.g., npm install or pnpm install) to regenerate
package-lock.json so all version references update to 2.0.1, then commit the
updated package-lock.json file.

"description": "A simple Gutenberg-first event management plugin that integrates with WooCommerce Box Office.",
"author": {
"name": "WordPress.com Special Projects Team",
Expand Down Expand Up @@ -65,4 +65,4 @@
"dependencies": {
"ajv": "^8.17.1"
}
}
}
6 changes: 3 additions & 3 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Simple Events Plugin bootstrap file.
*
* @since 1.0.0
* @version 2.0.0
* @version 2.0.1
* @author WordPress.com Special Projects
* @license GPL-3.0-or-later
*
Expand All @@ -13,7 +13,7 @@
* Description: Event management frontend for WooCommerce Box Office.
* Requires at least: 6.2
* Tested up to: 6.4
* Version: 2.0.0
* Version: 2.0.1
* Requires PHP: 8.0
* Author: WordPress.com Special Projects
* Author URI: https://wpspecialprojects.wordpress.com
Expand All @@ -31,7 +31,7 @@
function_exists( 'get_plugin_data' ) || require_once ABSPATH . 'wp-admin/includes/plugin.php';
define( 'SE_METADATA', get_plugin_data( __FILE__, false, false ) );

define( 'SE_VERSION', '2.0.0' );
define( 'SE_VERSION', '2.0.1' );
define( 'SE_BASENAME', plugin_basename( __FILE__ ) );
define( 'SE_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'SE_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
Expand Down