From d1a9a815098858b4485f3a061cef33a8cc5d2285 Mon Sep 17 00:00:00 2001 From: shalvah Date: Thu, 24 Jun 2021 23:40:27 +0100 Subject: [PATCH] 3.2.0 --- CHANGELOG.md | 7 +++++++ LICENSE.md | 2 +- src/Tools/Globals.php | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 541d8e22..ff596560 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.2.0 (Thursday, 24 June 2021) +### Added +- Support simple key-value for response headers (https://github.com/knuckleswtf/scribe/commit/20afb7e10ca8c5616fd5b9ce1b5333739fdd2348) + +### Modified +- Throw helpful error if factory instantiation errors (https://github.com/knuckleswtf/scribe/commit/5eb0d72f9b2898702c14d28582195722c27f00d0) + ## 3.1.0 (Friday, 18 June 2021) ### Added - Support nullable and union responseField types (https://github.com/knuckleswtf/scribe/commit/2912ac2344b37e30599aa1004c90e146a6f76aaa) diff --git a/LICENSE.md b/LICENSE.md index 49e8702d..48a4ed64 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2020 Shalvah Adebayo +Copyright (c) 2021 Shalvah Adebayo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/Tools/Globals.php b/src/Tools/Globals.php index cd69d98d..c937272d 100644 --- a/src/Tools/Globals.php +++ b/src/Tools/Globals.php @@ -4,7 +4,7 @@ class Globals { - public const SCRIBE_VERSION = '3.1.0'; + public const SCRIBE_VERSION = '3.2.0'; public static bool $shouldBeVerbose = false; }