From 4daf9ccb83f691f4a58662484d8d3901e56923f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Ruz=CC=8Cevic=CC=81?= Date: Thu, 11 Jul 2024 23:43:56 +0200 Subject: [PATCH] updating cli prefix --- CHANGELOG.md | 5 +++++ eightshift-boilerplate-plugin.php | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 415b1a0..f33dae9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/). +## [5.0.1] + +### Changed +- Main CLI command prefix. ## [5.0.0] @@ -91,6 +95,7 @@ Initial tagged release. [Unreleased]: https://github.com/infinum/eightshift-boilerplate-plugin/compare/master...HEAD +[5.0.1]: https://github.com/infinum/eightshift-boilerplate-plugin/compare/5.0.0...5.0.1 [5.0.0]: https://github.com/infinum/eightshift-boilerplate-plugin/compare/4.0.0...5.0.0 [4.0.0]: https://github.com/infinum/eightshift-boilerplate-plugin/compare/3.0.0...4.0.0 [3.0.0]: https://github.com/infinum/eightshift-boilerplate-plugin/compare/2.0.0...3.0.0 diff --git a/eightshift-boilerplate-plugin.php b/eightshift-boilerplate-plugin.php index 73c96b7..ede2543 100644 --- a/eightshift-boilerplate-plugin.php +++ b/eightshift-boilerplate-plugin.php @@ -5,7 +5,7 @@ * Description: This is a initial setup for the Eightshift WordPress Boilerplate Plugin. * Author: Eightshift team * Author URI: https://eightshift.com/ - * Version: 5.0.0 + * Version: 5.0.1 * License: MIT * License URI: http://www.gnu.org/licenses/gpl.html * Text Domain: eightshift-boilerplate-plugin @@ -39,5 +39,5 @@ * Run all WPCLI commands. */ if (class_exists(Cli::class)) { - (new Cli())->load('boilerplate'); + (new Cli())->load('boilerplate-plugin'); }