From 8e1076f6442b3d7d0e326030cd178cb7b64a6f8b Mon Sep 17 00:00:00 2001 From: William Desportes Date: Wed, 21 Apr 2021 21:20:22 +0200 Subject: [PATCH] chore: release 5.3.3 --- CHANGELOG.md | 2 +- src/Doctum.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77a12c8f..dde902da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,7 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support `UnionType` of PHP 8 - Support `namespace {//code}` syntax for namespaces without a name -## [5.3.3] - 2021-MM-DD +## [5.3.3] - 2021-04-21 _LTS release (PHP 7.1 only)_ diff --git a/src/Doctum.php b/src/Doctum.php index 29fda520..f55fd092 100644 --- a/src/Doctum.php +++ b/src/Doctum.php @@ -49,7 +49,7 @@ class Doctum implements ArrayAccess public const VERSION_MAJOR = 5; public const VERSION_MINOR = 3; public const VERSION_PATCH = 3; - 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' : '');