Release version 0.1.12

- Updated version number to 0.1.12
- Added changelog entry for WordPress mocking fix
- Updated readme.txt with new version and changelog
- Created release ZIP file
This commit is contained in:
2025-04-21 16:46:33 +01:00
parent 6e95542ac5
commit bfd2d4b063
4 changed files with 27 additions and 4 deletions

View File

@@ -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.11
* Version: 0.1.12
* 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.11' );
$wpst_plugin = new WPALLSTARS\PluginStarterTemplate\Plugin( __FILE__, '0.1.12' );
// Initialize the plugin.
$wpst_plugin->init();