From dc04532ca7bd5bb277c797582be53d2508a1b415 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Wed, 19 Aug 2020 21:04:48 +0200 Subject: [PATCH] chore: release 5.0.3 --- CHANGELOG.md | 4 ++-- src/Doctum.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41fba805..7044c7b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [5.0.3] - 2020-xx-xx - +## [5.0.3] - 2020-08-19 +- Some fixes for project classes ## [5.0.2] - 2020-08-15 - Upgrade nikic/php-parser from 4.5.x to 4.6.x diff --git a/src/Doctum.php b/src/Doctum.php index e709c52c..ee1f2d77 100644 --- a/src/Doctum.php +++ b/src/Doctum.php @@ -41,8 +41,8 @@ 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 VERSION_PATCH = 3; + 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' : '');