diff --git a/README.txt b/README.txt index 5550f66..3b740a3 100644 --- a/README.txt +++ b/README.txt @@ -1,13 +1,14 @@ === Captain Hooks === Contributors: dbeja -Tags: admin, dashboard, hooks, filters, actions, shortcodes +Tags: admin, hooks, filters, actions, shortcodes Donate link: https://www.paypal.com/paypalme/dbkode -Requires at least: 5.7 or higher +Requires at least: 5.7 Tested up to: 6.3.1 -Requires PHP: 7.2 or higher -Stable tag: 1.0.0 +Requires PHP: 7.2 +Stable tag: 1.0.1 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html +Captain Hooks is a WordPress plugin that provides developers with a comprehensive view of all actions, filters, and shortcodes of their environment. == Description == Captain Hooks is a robust WordPress plugin designed to give developers an in-depth look at all the hooks available in their WordPress environment. Explore actions, filters, and shortcodes like never before! @@ -36,5 +37,8 @@ To install this plugin: 4. Details about a shortcode == Changelog == -= 1.0 = += 1.0.1 = +* Fixed: WordPress.org warnings + += 1.0.0 = * Plugin release \ No newline at end of file diff --git a/captainhooks.php b/captainhooks.php index 9db3c75..acced88 100644 --- a/captainhooks.php +++ b/captainhooks.php @@ -3,7 +3,7 @@ * Plugin Name: Captain Hooks * Plugin URI: https://github.com/dbkode/captain-hooks * Description: Captain Hooks is a plugin that allows you to explore all the hooks (actions, filters and shortcodes) that are available in your WordPress installation. - * Version: 1.0.0 + * Version: 1.0.1 * Requires at least: 5.7 * Requires PHP: 7.2 * Author: dbeja @@ -20,7 +20,7 @@ define( 'CAPTAINHOOKS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'CAPTAINHOOKS_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -define( 'CAPTAINHOOKS_VERSION', '1.0.0' ); +define( 'CAPTAINHOOKS_VERSION', '1.0.1' ); require_once CAPTAINHOOKS_PLUGIN_DIR . '/vendor/autoload.php';