From ca7e7ff47cb1f5168424417461732e8825b5405e Mon Sep 17 00:00:00 2001 From: Grzegorz Ziolkowski Date: Fri, 14 Nov 2025 12:50:36 +0100 Subject: [PATCH] Update version to 0.5.0 in preparation to Composer package release --- .gitattributes | 4 ++++ abilities-api.php | 2 +- includes/bootstrap.php | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index 7710295a..92628bfd 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4,6 +4,10 @@ # Files and directories to exclude from the generated archive (export-ignore). # These will be omitted from GitHub/Packagist ZIP archives to keep packages small. +/packages/client/src/ export-ignore +/packages/client/.* export-ignore +/packages/client/*.* export-ignore + # Tests and test fixtures /tests/ export-ignore diff --git a/abilities-api.php b/abilities-api.php index ac0ed5ed..ea087ab3 100644 --- a/abilities-api.php +++ b/abilities-api.php @@ -12,7 +12,7 @@ * Plugin URI: https://github.com/WordPress/abilities-api * Description: Provides a framework for registering and executing AI abilities in WordPress. * Requires at least: 6.8 - * Version: 0.3.0 + * Version: 0.5.0 * Requires PHP: 7.2 * Author: WordPress.org Contributors * Author URI: https://github.com/WordPress/abilities-api/graphs/contributors diff --git a/includes/bootstrap.php b/includes/bootstrap.php index e971ecde..19c29f12 100644 --- a/includes/bootstrap.php +++ b/includes/bootstrap.php @@ -19,7 +19,7 @@ // Version of the plugin. if ( ! defined( 'WP_ABILITIES_API_VERSION' ) ) { - define( 'WP_ABILITIES_API_VERSION', '0.3.0' ); + define( 'WP_ABILITIES_API_VERSION', '0.5.0' ); } // Load core classes if they are not already defined (for non-Composer installs or direct includes).