shalvah 4 years ago
parent
commit
77c27beb3c
2 changed files with 5 additions and 1 deletions
  1. 4 0
      CHANGELOG.md
  2. 1 1
      src/Tools/Globals.php

+ 4 - 0
CHANGELOG.md

@@ -12,6 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 
 ### Removals
 
+## 3.4.3 (Monday, 5 July 2021)
+### Modified
+- Internal change: switch to using strategies to get "grouped endpoints" (https://github.com/knuckleswtf/scribe/pull/263)
+
 ## 3.4.2 (Monday, 5 July 2021)
 ### Modified
 - Only use model key type for URL param type if it's the same as the route key name (https://github.com/knuckleswtf/scribe/pull/265)

+ 1 - 1
src/Tools/Globals.php

@@ -4,7 +4,7 @@ namespace Knuckles\Scribe\Tools;
 
 class Globals
 {
-    public const SCRIBE_VERSION = '3.4.2';
+    public const SCRIBE_VERSION = '3.4.3';
 
     public static bool $shouldBeVerbose = false;
 }