diff --git a/CHANGELOG.md b/CHANGELOG.md index b8024c6a..c938d225 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Removed +# 4.20.0 (28 May 2023) +## Modified +- Support Laravel 10's optional `rules()` in Form Requests ([#664](https://github.com/knuckleswtf/scribe/pull/664)) +- Allow `@apiResource` without `@apiResourceModel` ([#662](https://github.com/knuckleswtf/scribe/pull/662)) + +## Fixed +- Don't autoload in `class_exists()` check ([#659](https://github.com/knuckleswtf/scribe/pull/659)) +- Don't override description in enum rules ([#667](https://github.com/knuckleswtf/scribe/pull/667)) + # 4.19.1 (5 May 2023) ## Fixed - Fix translations when locale is not EN and no strings are defined ([8d2be2c6](https://github.com/knuckleswtf/scribe/commit/8d2be2c681f71ed31c6be5043d6b1a0761f0235e)) diff --git a/src/Scribe.php b/src/Scribe.php index df74663a..381f7081 100644 --- a/src/Scribe.php +++ b/src/Scribe.php @@ -9,7 +9,7 @@ class Scribe { - public const VERSION = '4.19.1'; + public const VERSION = '4.20.0'; /** * Specify a callback that will be executed just before a response call is made