diff --git a/CHANGELOG.md b/CHANGELOG.md index fa2265bc..3560a377 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [5.0.2] - 2020-xx-xx +## [5.0.2] - 2020-08-15 - Upgrade nikic/php-parser from 4.5.x to 4.6.x - Add an error for PHP versions below 7.1 - Fixed an error due to [#249 on phpdocumentor/reflection-docblock](https://github.com/phpDocumentor/ReflectionDocBlock/issues/249) diff --git a/src/Doctum.php b/src/Doctum.php index e709c52c..d9e5e616 100644 --- a/src/Doctum.php +++ b/src/Doctum.php @@ -42,7 +42,7 @@ class Doctum extends Container public const VERSION_MAJOR = 5; public const VERSION_MINOR = 0; public const VERSION_PATCH = 2; - public const IS_DEV = true; + public const IS_DEV = false; //@phpstan-ignore-next-line public const VERSION = self::VERSION_MAJOR . '.' . self::VERSION_MINOR . '.' . self::VERSION_PATCH . (self::IS_DEV ? '-dev' : '');