Update version to 0.1.13

- Updated version number in all files
- Added changelog entries for code quality improvements
- Created release ZIP file
This commit is contained in:
2025-04-21 16:57:47 +01:00
parent 40ebbce1cc
commit 136f07d9c4
6 changed files with 36 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ This workspace may contain multiple repository folders. Always focus ONLY on the
* **Plugin Slug**: wp-plugin-starter-template * **Plugin Slug**: wp-plugin-starter-template
* **Text Domain**: wp-plugin-starter-template * **Text Domain**: wp-plugin-starter-template
* **Namespace**: WPALLSTARS\PluginStarterTemplate * **Namespace**: WPALLSTARS\PluginStarterTemplate
* **Version**: 0.1.12 * **Version**: 0.1.13
* **Requires WordPress**: 5.0+ * **Requires WordPress**: 5.0+
* **Requires PHP**: 7.0+ * **Requires PHP**: 7.0+
* **License**: GPL-2.0+ * **License**: GPL-2.0+

View File

@@ -1,5 +1,16 @@
All notable changes to this project should be documented both here and in the main Readme files. All notable changes to this project should be documented both here and in the main Readme files.
#### [0.1.13] - 2023-04-23
#### Improved
- Improved code quality with proper type declarations
- Fixed inconsistent variable naming (camelCase to snake_case)
- Improved path handling in admin class
- Added textdomain loading functionality
- Removed unused phpcs:ignore comment
- Implemented proper return type declarations
#### [0.1.12] - 2023-04-22 #### [0.1.12] - 2023-04-22
#### Fixed #### Fixed

View File

@@ -478,6 +478,15 @@ For more information on Git Updater integration, see the [Git Updater Required H
## Changelog ## Changelog
### 0.1.13
* Improved: Code quality with proper type declarations
* Fixed: Inconsistent variable naming (camelCase to snake_case)
* Improved: Path handling in admin class
* Added: Textdomain loading functionality
* Removed: Unused phpcs:ignore comment
* Implemented: Proper return type declarations
### 0.1.12 ### 0.1.12
* Fixed: WordPress mocking in unit tests * Fixed: WordPress mocking in unit tests

View File

@@ -5,7 +5,7 @@ Tags: starter, template, boilerplate, plugin development, ai coding
Requires at least: 5.0 Requires at least: 5.0
Tested up to: 6.5 Tested up to: 6.5
Requires PHP: 7.4 Requires PHP: 7.4
Stable tag: 0.1.12 Stable tag: 0.1.13
License: GPL-2.0-or-later License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -228,6 +228,14 @@ npm run multisite
== Changelog == == Changelog ==
= 0.1.13 =
* Improved: Code quality with proper type declarations
* Fixed: Inconsistent variable naming (camelCase to snake_case)
* Improved: Path handling in admin class
* Added: Textdomain loading functionality
* Removed: Unused phpcs:ignore comment
* Implemented: Proper return type declarations
= 0.1.12 = = 0.1.12 =
* Fixed: WordPress mocking in unit tests * Fixed: WordPress mocking in unit tests
* Added: Proper mocking for WordPress functions in tests * Added: Proper mocking for WordPress functions in tests
@@ -295,6 +303,9 @@ npm run multisite
== Upgrade Notice == == Upgrade Notice ==
= 0.1.13 =
Improved code quality with proper type declarations, consistent variable naming, and better path handling.
= 0.1.12 = = 0.1.12 =
Fixed WordPress mocking in unit tests, improved code quality tool configurations, and added detailed workflow documentation. Fixed WordPress mocking in unit tests, improved code quality tool configurations, and added detailed workflow documentation.

View File

@@ -2,7 +2,7 @@
sonar.projectKey=wpallstars_wp-plugin-starter-template-for-ai-coding sonar.projectKey=wpallstars_wp-plugin-starter-template-for-ai-coding
sonar.organization=wpallstars sonar.organization=wpallstars
sonar.projectName=wp-plugin-starter-template-for-ai-coding sonar.projectName=wp-plugin-starter-template-for-ai-coding
sonar.projectVersion=0.1.12 sonar.projectVersion=0.1.13
# Path to source directories # Path to source directories
sonar.sources=. sonar.sources=.

View File

@@ -3,7 +3,7 @@
* Plugin Name: WordPress Plugin Starter Template * Plugin Name: WordPress Plugin Starter Template
* Plugin URI: https://www.wpallstars.com * Plugin URI: https://www.wpallstars.com
* Description: A comprehensive starter template for WordPress plugins with best practices for AI-assisted development. * Description: A comprehensive starter template for WordPress plugins with best practices for AI-assisted development.
* Version: 0.1.12 * Version: 0.1.13
* Author: Your Name & The WPALLSTARS Team * Author: Your Name & The WPALLSTARS Team
* Author URI: https://www.wpallstars.com * Author URI: https://www.wpallstars.com
* License: GPL-2.0+ * License: GPL-2.0+
@@ -35,7 +35,7 @@ if ( ! defined( 'WPINC' ) ) {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin.php';
// Initialize the plugin and store the instance in a global variable. // Initialize the plugin and store the instance in a global variable.
$wpst_plugin = new WPALLSTARS\PluginStarterTemplate\Plugin( __FILE__, '0.1.12' ); $wpst_plugin = new WPALLSTARS\PluginStarterTemplate\Plugin( __FILE__, '0.1.13' );
// Initialize the plugin. // Initialize the plugin.
$wpst_plugin->init(); $wpst_plugin->init();