Skip to content

Commit 1304e15

Browse files
committed
4.36.0
1 parent f56a480 commit 1304e15

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1212

1313
### Removed
1414

15+
# 4.36.0 (27 May 2024)
16+
## Added
17+
- Add `afterResponseCall` hook [#847](https://github.com/knuckleswtf/scribe/pull/847)
18+
19+
## Fixed
20+
- Unescape tryItOutBaseURL [09b49b582](https://github.com/knuckleswtf/scribe/commit/09b49b5829647597825b2cc7162382e926d53f90)
21+
- Ignore `external.html_attributes` for upgrades [f56a48014](https://github.com/knuckleswtf/scribe/commit/f56a480140d25ada8a441f69db9a6a14b5f0dcd1)
22+
- Fix missing title and logo in `elements` theme [#844](https://github.com/knuckleswtf/scribe/pull/844)
23+
24+
1525
# 4.35.0 (26 March 2024)
1626
## Modified
1727
- Allow examples to be shown in response fields [#825](https://github.com/knuckleswtf/scribe/pull/825)

src/Extracting/Strategies/GetFromInlineValidatorBase.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ public function lookForInlineValidationRules(ClassMethod $methodAst): array
8181
if ($arrayItem->value instanceof Node\Scalar\String_) {
8282
$rulesList[] = $arrayItem->value->value;
8383
}
84-
8584
// Try to extract Enum rule
8685
else if (
8786
function_exists('enum_exists') &&

src/Scribe.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class Scribe
1111
{
12-
public const VERSION = '4.35.0';
12+
public const VERSION = '4.36.0';
1313

1414
/**
1515
* Specify a callback that will be executed just before a response call is made

0 commit comments

Comments
 (0)