Skip to content

Commit

Permalink
3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah committed Oct 26, 2021
1 parent 4fb2447 commit 1ddd500
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Removals

## 3.13.0 (Tuesday, 26 October 2021)
### Added
- Add `afterGenerating()` hook ([#61a4821e103bad2bdd5068890c7ed2c90ba6cdee](https://github.com/knuckleswtf/scribe/commit/61a4821e103bad2bdd5068890c7ed2c90ba6cdee))

### Fixed
- Prefill examples without breaking BC ([4fb2447182998835ba1ddcc10af12dfbe3a49f4b](https://github.com/knuckleswtf/scribe/commit/4fb2447182998835ba1ddcc10af12dfbe3a49f4b)

## 3.12.1 (Monday, 25 October 2021)
### Fixed
- Fix for prefilling examples
Expand Down
2 changes: 1 addition & 1 deletion src/Scribe.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static function beforeResponseCall(callable $callable)
*
* If you disabled `postman` or `openapi`, their values will be null.
*
* @param callable(array<string, string>): mixed $callable
* @param callable(array<string, string|array<string, string>): mixed $callable
*/
public static function afterGenerating(callable $callable)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/Globals.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class Globals
{
public const SCRIBE_VERSION = '3.12.1';
public const SCRIBE_VERSION = '3.13.0';

public static bool $shouldBeVerbose = false;

Expand Down

0 comments on commit 1ddd500

Please sign in to comment.