Skip to content

Commit 7af6ad7

Browse files
committed
chore: update version to 5.0.1-dev
1 parent 3d14696 commit 7af6ad7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [5.0.1] - 2020-07-xx
10+
- Fix a parsing error on "src/Parser/NodeVisitor"
11+
912
## [5.0.0] - 2020-07-18
1013

1114
- Forked the project

src/Doctum.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ class Doctum extends Container
4141
{
4242
public const VERSION_MAJOR = 5;
4343
public const VERSION_MINOR = 0;
44-
public const VERSION_PATCH = 0;
45-
public const IS_DEV = false;
44+
public const VERSION_PATCH = 1;
45+
public const IS_DEV = true;
4646

4747
//@phpstan-ignore-next-line
4848
public const VERSION = self::VERSION_MAJOR . '.' . self::VERSION_MINOR . '.' . self::VERSION_PATCH . (self::IS_DEV ? '-dev' : '');

0 commit comments

Comments
 (0)