diff --git a/CHANGELOG.md b/CHANGELOG.md index ff596560..44184106 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/), ### Removals +## 3.3.0 (Friday, 25 June 2021) +### Fixed +- Don't depend on unavailable view service provider (https://github.com/knuckleswtf/scribe/pull/254) +- Delete older versioned assets (https://github.com/knuckleswtf/scribe/commit/b02af7e21f89406ec33be2e6ca1c206df3733b1b) +- Generate proper OAS types for files and request body arrays (https://github.com/knuckleswtf/scribe/commit/8b51d839d213a1abe110e439281273b33facb344) + +### Modified +- Exclude more specific headers from sample responses (https://github.com/knuckleswtf/scribe/commit/5583b725d714090a198cf906115860626f537c09) + ## 3.2.0 (Thursday, 24 June 2021) ### Added - Support simple key-value for response headers (https://github.com/knuckleswtf/scribe/commit/20afb7e10ca8c5616fd5b9ce1b5333739fdd2348) diff --git a/src/Tools/Globals.php b/src/Tools/Globals.php index c937272d..d252ec57 100644 --- a/src/Tools/Globals.php +++ b/src/Tools/Globals.php @@ -4,7 +4,7 @@ class Globals { - public const SCRIBE_VERSION = '3.2.0'; + public const SCRIBE_VERSION = '3.3.0'; public static bool $shouldBeVerbose = false; }