Browse Source

Update changelog

shalvah 4 years ago
parent
commit
49b7fbf6fe
5 changed files with 8 additions and 3 deletions
  1. 4 0
      CHANGELOG.md
  2. 1 1
      README.md
  3. 1 1
      docs/index.md
  4. 1 0
      phpstan.neon
  5. 1 1
      src/Tools/Globals.php

+ 4 - 0
CHANGELOG.md

@@ -12,6 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 
 ### Removals
 
+## 2.4.2 (Tuesday, 1 December 2020)
+### Fixes
+- Specify the `local` disk when fetching `openapi.yaml` file. (https://github.com/knuckleswtf/scribe/pull/150)
+
 ## 2.4.1 (Monday, 30 November 2020)
 ### Changes
 - Scribe will no longer throw an error if you describe an object subfield without adding the parent. We'll add it automatically for you (but you really should). (https://github.com/knuckleswtf/scribe/commit/77d516cbdbc6aa66466a640e20092d6e7a8df456)

+ 1 - 1
README.md

@@ -10,7 +10,7 @@ Generate API documentation for humans from your Laravel codebase. [Here's what t
 
 [![Latest Stable Version](https://poser.pugx.org/knuckleswtf/scribe/v/stable)](https://packagist.org/packages/knuckleswtf/scribe) [![Total Downloads](https://poser.pugx.org/knuckleswtf/scribe/downloads)](https://packagist.org/packages/knuckleswtf/scribe) [![Build Status](https://travis-ci.com/knuckleswtf/scribe.svg?branch=master)](https://travis-ci.com/knuckleswtf/scribe)
 
-> 👋 Scribe helps you generate docs automatically, but if you really want to make friendly, maintainable and testable API docs, there's a few more things you need to know. So we made [a course](https://apidocsfordevs.com?utm_source=scribe-laravel&utm_medium=referral&utm_campaign=launch) for you. (PS. it's 40% off until 30 November!)
+> 👋 Scribe helps you generate docs automatically, but if you really want to make friendly, maintainable and testable API docs, there's some more things you need to know. So I made [a course](https://apidocsfordevs.com?utm_source=scribe-laravel&utm_medium=referral&utm_campaign=launch) for you.🤗
 
 ## Features
 - Pretty HTML documentation page, with included code samples and friendly text

+ 1 - 1
docs/index.md

@@ -11,7 +11,7 @@ Generate API documentation for humans from your Laravel/Lumen/[Dingo](https://gi
 ```
 
 ```eval_rst
-.. Tip:: Scribe helps you generate docs automatically, but if you really want to make friendly, maintainable and testable API docs, there's a few more things you need to know. So we made `a course <https://apidocsfordevs.com?utm_source=scribe-laravel-docs&utm_medium=referral&utm_campaign=launch>`_ for you. (PS. it's 40% off until 30 November!)
+.. Tip:: Scribe helps you generate docs automatically, but if you really want to make friendly, maintainable and testable API docs, there's some more stuff you need to know. So I made `a course <https://apidocsfordevs.com?utm_source=scribe-laravel-docs&utm_medium=referral&utm_campaign=launch>`_ for you.🤗
 ```
 
 ## Features

+ 1 - 0
phpstan.neon

@@ -16,3 +16,4 @@ parameters:
         - '#.+Dingo.+#'
         - '#Right side of && is always false.#'
         - '#Function factory invoked with 1 parameter, 0 required.#'
+        - '#Call to an undefined method Illuminate\\Contracts\\Filesystem\\Filesystem::path\(\)#'

+ 1 - 1
src/Tools/Globals.php

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