shalvah 3 years ago
parent
commit
277c56e553
3 changed files with 7 additions and 2 deletions
  1. 5 0
      CHANGELOG.md
  2. 1 1
      README.md
  3. 1 1
      src/Tools/Globals.php

+ 5 - 0
CHANGELOG.md

@@ -12,5 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 
 ### Removals
 
+## 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)
 [Release announcement](https://scribe.knuckles.wtf/blog/2021/06/08/laravel-v3)

+ 1 - 1
README.md

@@ -26,7 +26,7 @@ Scribe helps you generate API documentation for humans from your Laravel/Lumen/[
 ## Documentation
 Check out the documentation at [scribe.knuckles.wtf/laravel](http://scribe.knuckles.wtf/laravel).
 
-v2 docs (unmaintained) are at [scribe.rtfd.io](http://scribe.rtfd.io).
+v2 docs (PHP 7.2+, not actively maintained) are at [scribe.rtfd.io](http://scribe.rtfd.io).
 
 If you're coming from `mpociot/laravel-apidoc-generator`, there's a [migration guide](https://scribe.knuckles.wtf/laravel/migrating-apidoc).
 

+ 1 - 1
src/Tools/Globals.php

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