shalvah 3 년 전
부모
커밋
d1a9a81509
3개의 변경된 파일9개의 추가작업 그리고 2개의 파일을 삭제
  1. 7 0
      CHANGELOG.md
  2. 1 1
      LICENSE.md
  3. 1 1
      src/Tools/Globals.php

+ 7 - 0
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)

+ 1 - 1
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

+ 1 - 1
src/Tools/Globals.php

@@ -4,7 +4,7 @@ namespace Knuckles\Scribe\Tools;
 
 class Globals
 {
-    public const SCRIBE_VERSION = '3.1.0';
+    public const SCRIBE_VERSION = '3.2.0';
 
     public static bool $shouldBeVerbose = false;
 }