shalvah 2 năm trước cách đây
mục cha
commit
3891e06d6d
3 tập tin đã thay đổi với 8 bổ sung3 xóa
  1. 2 2
      .github/workflows/lint.yml
  2. 5 0
      CHANGELOG.md
  3. 1 1
      src/Tools/Globals.php

+ 2 - 2
.github/workflows/lint.yml

@@ -11,7 +11,7 @@ jobs:
     strategy:
       matrix:
         php:
-        - 8.1
+        - 7.4
 
     name: Lint code (PHP ${{ matrix.php }})
 
@@ -35,4 +35,4 @@ jobs:
       - name: Lint code
         env:
           COMPOSER_MEMORY_LIMIT: "-1"
-        run: composer lint
+        run: composer lint

+ 5 - 0
CHANGELOG.md

@@ -12,6 +12,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 
 ### Removed
 
+## 3.37.1 (5 September 2022)
+### Fixed
+- Fix regression in parsing status code from API resource tags ([#516](https://github.com/knuckleswtf/scribe/pull/516))
+- Don't crash if instantiation of method argument fails ([#515](https://github.com/knuckleswtf/scribe/pull/515))
+
 ## 3.37.0 (27 August 2022)
 ### Added
 - Support `"No-example"` as `example` value in `bodyParameters()` and friends ([#511](https://github.com/knuckleswtf/scribe/pull/511))

+ 1 - 1
src/Tools/Globals.php

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