shalvah 3 years ago
parent
commit
63c7e18b42
2 changed files with 8 additions and 1 deletions
  1. 7 0
      CHANGELOG.md
  2. 1 1
      src/Tools/Globals.php

+ 7 - 0
CHANGELOG.md

@@ -12,6 +12,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 
 ### Removed
 
+## 3.30.0 (11 June 2022)
+### Added
+- Support for more inline validator forms (`$request->validate(...)` without assignment, and `$this->validate($request, ...)`) ([29940c2e](https://github.com/knuckleswtf/scribe/commit/29940c2e05c8035a1ab85d9482c2335e1747ab41)))
+
+### Fixed
+- Fix incorrect public_path check on Lumen ([64ad2f6e](https://github.com/knuckleswtf/scribe/commit/64ad2f6e059bea03e9ba5b209818e916758ca36a)))
+
 ## 3.29.1 (22 May 2022)
 ### Fixed
 - Make output path for `laravel` type configurable ([48b2b90](https://github.com/knuckleswtf/scribe/commit/48b2b90580f92dbe2fa5ebdad207fa082c875532)))

+ 1 - 1
src/Tools/Globals.php

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