diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e184556..cc72c8ab 100644 --- a/CHANGELOG.md +++ b/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) \ No newline at end of file diff --git a/README.md b/README.md index 99594584..db273336 100644 --- a/README.md +++ b/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). diff --git a/src/Tools/Globals.php b/src/Tools/Globals.php index 369f7eb7..8841c8df 100644 --- a/src/Tools/Globals.php +++ b/src/Tools/Globals.php @@ -4,7 +4,7 @@ class Globals { - public const SCRIBE_VERSION = '3.0.0-alpha'; + public const SCRIBE_VERSION = '3.0.1'; public static $shouldBeVerbose = false;