From 5e65d07a4f994c546d81696b711543f6eba1ad85 Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Mon, 24 Nov 2025 00:36:54 +0000 Subject: [PATCH] Bump version to 0.1.15 --- CHANGELOG.md | 6 ++++++ composer.json | 2 +- package.json | 2 +- readme.txt | 8 +++++++- wp-plugin-starter-template.php | 4 ++-- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbbf5ef..ad1ee8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ All notable changes to this project should be documented both here and in the main Readme files. +#### [0.1.15] - 2025-11-24 + +#### Release + +- Maintenance release + #### [0.1.14] - 2025-11-24 #### Changed diff --git a/composer.json b/composer.json index f1b5d5a..db2a34c 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "wpallstars/wp-plugin-starter-template-for-ai-coding", "description": "A starter template for WordPress plugins with AI development workflows.", "type": "wordpress-plugin", - "version": "0.1.14", + "version": "0.1.15", "license": "GPL-2.0-or-later", "authors": [ { diff --git a/package.json b/package.json index 4766a77..6143aa8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wp-plugin-starter-template-for-ai-coding", - "version": "0.1.14", + "version": "0.1.15", "description": "A comprehensive starter template for WordPress plugins with best practices for AI-assisted development.", "main": "index.js", "scripts": { diff --git a/readme.txt b/readme.txt index d78c0f7..ce954b1 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: starter, template, boilerplate, plugin development, ai coding Requires at least: 5.0 Tested up to: 6.5 Requires PHP: 7.4 -Stable tag: 0.1.14 +Stable tag: 0.1.15 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -228,6 +228,9 @@ npm run multisite == Changelog == += 0.1.15 = +* Release: Maintenance release + = 0.1.14 = * Changed: Renamed .ai-assistant.md to AGENTS.md for better discoverability * Changed: Renamed .ai-workflows directory to .agents @@ -308,6 +311,9 @@ npm run multisite == Upgrade Notice == += 0.1.15 = +Maintenance release. + = 0.1.14 = Renamed AI assistant documentation files to AGENTS.md and .agents/ directory. diff --git a/wp-plugin-starter-template.php b/wp-plugin-starter-template.php index a229977..040231d 100644 --- a/wp-plugin-starter-template.php +++ b/wp-plugin-starter-template.php @@ -3,7 +3,7 @@ * Plugin Name: WordPress Plugin Starter Template * Plugin URI: https://www.wpallstars.com * Description: A comprehensive starter template for WordPress plugins with best practices for AI-assisted development. - * Version: 0.1.14 + * Version: 0.1.15 * Author: Your Name & The WPALLSTARS Team * Author URI: https://www.wpallstars.com * License: GPL-2.0+ @@ -35,7 +35,7 @@ if ( ! defined( 'WPINC' ) ) { require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin.php'; // Initialize the plugin and store the instance in a global variable. -$wpst_plugin = new WPALLSTARS\PluginStarterTemplate\Plugin( __FILE__, '0.1.14' ); +$wpst_plugin = new WPALLSTARS\PluginStarterTemplate\Plugin( __FILE__, '0.1.15' ); // Initialize the plugin. $wpst_plugin->init();