From 7cb14e3931b48b46c14dbc5d896fba19499d4a1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Gonz=C3=A1lez?= Date: Mon, 25 Nov 2024 19:54:07 +0000 Subject: [PATCH] fix plugin name, cl --- CHANGELOG.md | 8 ++++++++ src/Plugin.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ab7cc..8d0fd22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Changelog ========= +* 2.2.1 + * Fix plugin name +* 2.2.0 + * Backport #57 fix to 2.next branch (cake4) by @jay-eventrac in #58 +* 2.0.3 + * Fix ConstStrategy for associations queries without record +* 2.0.1 + * Constant Strategy Improvements * 2.0.0 CakePHP 4.x support * 1.2.0 diff --git a/src/Plugin.php b/src/Plugin.php index b01c19f..2d61720 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -22,5 +22,5 @@ class Plugin extends BasePlugin * * @var string */ - protected $name = 'BootstrapUI'; + protected $name = 'Enum'; }