From cda557e030a2f6f3e3b3648b546d3d71878d0f71 Mon Sep 17 00:00:00 2001 From: shalvah Date: Fri, 18 Jun 2021 12:46:34 +0100 Subject: [PATCH] 3.1.0 --- CHANGELOG.md | 7 +++++++ src/Tools/Globals.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 393d7002..541d8e22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Removals +## 3.1.0 (Friday, 18 June 2021) +### Added +- Support nullable and union responseField types (https://github.com/knuckleswtf/scribe/commit/2912ac2344b37e30599aa1004c90e146a6f76aaa) + +### Fixed +- Fix OAS generation (https://github.com/knuckleswtf/scribe/commit/a5f51714eafe9b281cc1bbeb1b3186c03f4e3e61) + ## 3.0.3 (Friday, 18 June 2021) ### Fixed - Try It Out: Send body params in the right format (https://github.com/knuckleswtf/scribe/pull/245) diff --git a/src/Tools/Globals.php b/src/Tools/Globals.php index a296643b..cd69d98d 100644 --- a/src/Tools/Globals.php +++ b/src/Tools/Globals.php @@ -4,7 +4,7 @@ class Globals { - public const SCRIBE_VERSION = '3.0.3'; + public const SCRIBE_VERSION = '3.1.0'; public static bool $shouldBeVerbose = false; }