diff --git a/CHANGELOG.md b/CHANGELOG.md index 5eb37da..cbf44fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ All notable changes to this project should be documented both here and in the main Readme files. +#### [0.1.6] - 2025-04-19 +#### Fixed +- GitHub Actions workflows permissions for releases and wiki sync + #### [0.1.5] - 2025-04-19 #### Fixed - Release workflow to use correct plugin directory name diff --git a/README.md b/README.md index cb86979..e0dcdec 100644 --- a/README.md +++ b/README.md @@ -278,6 +278,9 @@ For more information on Git Updater integration, see the [Git Updater Required H ## Changelog +### 0.1.6 +* Fixed: GitHub Actions workflows permissions for releases and wiki sync + ### 0.1.5 * Fixed: Release workflow to use correct plugin directory name * Added: Testing setup with wp-env and Cypress diff --git a/package.json b/package.json new file mode 100644 index 0000000..eaa37cd --- /dev/null +++ b/package.json @@ -0,0 +1,39 @@ +{ + "name": "wp-plugin-starter-template-for-ai-coding", + "version": "0.1.6", + "description": "A comprehensive starter template for WordPress plugins with best practices for AI-assisted development.", + "main": "index.js", + "scripts": { + "start": "wp-env start", + "stop": "wp-env stop", + "wp-env": "wp-env", + "multisite": "wp-env start --config=.wp-env.multisite.json", + "test:e2e": "cypress open --config-file tests/e2e/cypress.json", + "test:e2e:headless": "cypress run --config-file tests/e2e/cypress.json", + "build": "./build.sh", + "lint:php": "composer run-script phpcs", + "fix:php": "composer run-script phpcbf", + "test:php": "composer run-script test" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/wpallstars/wp-plugin-starter-template-for-ai-coding.git" + }, + "keywords": [ + "wordpress", + "plugin", + "template", + "ai", + "coding" + ], + "author": "WPALLSTARS", + "license": "GPL-2.0-or-later", + "bugs": { + "url": "https://github.com/wpallstars/wp-plugin-starter-template-for-ai-coding/issues" + }, + "homepage": "https://github.com/wpallstars/wp-plugin-starter-template-for-ai-coding#readme", + "devDependencies": { + "@wordpress/env": "^5.0.0", + "cypress": "^9.7.0" + } +} diff --git a/readme.txt b/readme.txt index 70fe82c..146265a 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.4 Requires PHP: 7.0 -Stable tag: 0.1.5 +Stable tag: 0.1.6 License: GPL-2.0+ License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -205,6 +205,9 @@ npm run multisite == Changelog == += 0.1.6 = +* Fixed: GitHub Actions workflows permissions for releases and wiki sync + = 0.1.5 = * Fixed: Release workflow to use correct plugin directory name * Added: Testing setup with wp-env and Cypress @@ -238,6 +241,9 @@ npm run multisite == Upgrade Notice == += 0.1.6 = +Fixed GitHub Actions workflows permissions for releases and wiki sync. + = 0.1.5 = Fixed release workflow and added testing setup with wp-env and Cypress, multisite compatibility, and npm scripts for development and testing. diff --git a/wp-plugin-starter-template.php b/wp-plugin-starter-template.php index 743b98d..4b03445 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.5 + * Version: 0.1.6 * Author: Your Name & The WPALLSTARS Team * Author URI: https://www.wpallstars.com * License: GPL-2.0+ @@ -35,4 +35,4 @@ if (!defined('WPINC')) { require_once plugin_dir_path(__FILE__) . 'includes/plugin.php'; // Initialize the plugin -new WPALLSTARS\PluginStarterTemplate\Plugin(__FILE__, '0.1.5'); +new WPALLSTARS\PluginStarterTemplate\Plugin(__FILE__, '0.1.6');