diff --git a/CHANGELOG.md b/CHANGELOG.md index dfd10ba..4f3a21e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to `filament-debugger` will be documented in this file. +## 3.1.2 - 2024-09-25 + +- Renamed `groupNavigation` to `navigationGroup` and deprecate the former. +- Updated readme file. + ## 3.1.1 - 2024-09-22 - Fixed issue #32 diff --git a/src/Traits/HasGroup.php b/src/Traits/HasGroup.php index 70efb70..198f9a0 100755 --- a/src/Traits/HasGroup.php +++ b/src/Traits/HasGroup.php @@ -25,7 +25,7 @@ public function navigationGroup(Closure | bool $condition = true, string $label /** * @deprecated since v3.1.2 */ - public function groupNavigation(Closure|bool $condition = true, string $label = 'Debuggers'): static + public function groupNavigation(Closure | bool $condition = true, string $label = 'Debuggers'): static { $this->navigationGroup = $condition;