diff --git a/CHANGELOG.md b/CHANGELOG.md index a1f6888..e66694c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ All notable changes to this project should be documented both here and in the main Readme files. +#### [0.1.11] - 2023-04-21 + +#### Improved + +- Improved code quality with comprehensive fixes +- Fixed indentation issues in PHP files +- Updated CSS formatting with modern notation +- Fixed JavaScript issues with proper global variables +- Improved security by using filter_input() instead of direct superglobal access +- Standardized naming conventions across the codebase +- Fixed documentation and comments for better clarity + #### [0.1.10] - 2025-04-20 #### Fixed diff --git a/readme.txt b/readme.txt index dab14a6..ad7192c 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.10 +Stable tag: 0.1.11 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -228,6 +228,15 @@ npm run multisite == Changelog == += 0.1.11 = +* Improved: Code quality with comprehensive fixes +* Fixed: Indentation issues in PHP files +* Updated: CSS formatting with modern notation +* Fixed: JavaScript issues with proper global variables +* Improved: Security by using filter_input() instead of direct superglobal access +* Standardized: Naming conventions across the codebase +* Fixed: Documentation and comments for better clarity + = 0.1.10 = * Fixed: Formatting issues in markdown files for better code quality * Fixed: Improved URL formatting with angle brackets @@ -279,6 +288,9 @@ npm run multisite == Upgrade Notice == += 0.1.11 = +Improved code quality with comprehensive fixes, better security, and standardized naming conventions across the codebase. + = 0.1.10 = Improved code quality with better formatting in documentation files, standardized list formatting, and proper URL formatting. diff --git a/wp-plugin-starter-template.php b/wp-plugin-starter-template.php index 680cebf..0acb5e6 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.10 + * Version: 0.1.11 * 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.10' ); +$wpst_plugin = new WPALLSTARS\PluginStarterTemplate\Plugin( __FILE__, '0.1.11' ); // Initialize the plugin. $wpst_plugin->init();