Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion abilities-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion includes/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down