Skip to content

Commit bec9b1d

Browse files
committed
Bump version
1 parent 1f6e804 commit bec9b1d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Traits/AutotrackRevisions.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ public function revision() : string
3232

3333
$tokens = [];
3434

35-
while ($current = array_pop($stack)) {
35+
while ($stack) {
36+
$current = array_pop($stack);
37+
3638
$reflector = new ReflectionClass($current);
3739

3840
$properties = $reflector->getProperties();

src/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* @var string
1111
*/
12-
const VERSION = '1.3.1';
12+
const VERSION = '1.3.2';
1313

1414
/**
1515
* A small number used in substitution of 0.

0 commit comments

Comments
 (0)