shalvah 3 lat temu
rodzic
commit
2b88c61eab
2 zmienionych plików z 8 dodań i 4 usunięć
  1. 6 2
      CHANGELOG.md
  2. 2 2
      src/Tools/Globals.php

+ 6 - 2
CHANGELOG.md

@@ -12,10 +12,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 
 ### Removals
 
-## 3.0.1 (Tuesday, 8 June, 2021)
+## 3.0.2 (Friday, 11 June 2021)
+### Fixed
+- Use regular relative paths for assets if not using default static output path (https://github.com/knuckleswtf/scribe/commit/235)
+
+## 3.0.1 (Tuesday, 8 June 2021)
 ### Fixed
 - Properly cast status codes for API Resource and Transformer responses (https://github.com/knuckleswtf/scribe/pull/235)
 - Don't crash on unrecognized validation rule formats (https://github.com/knuckleswtf/scribe/commit/c86ea65e903a013f33dc660269d7fff5e2376490)
 
-## 3.0.0 (Monday, 7 June, 2021)
+## 3.0.0 (Monday, 7 June 2021)
 [Release announcement](https://scribe.knuckles.wtf/blog/2021/06/08/laravel-v3)

+ 2 - 2
src/Tools/Globals.php

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