From aba1c342d817fb06725dfe8909ca601d5cb3b47e Mon Sep 17 00:00:00 2001 From: William Desportes Date: Thu, 22 Apr 2021 01:51:58 +0200 Subject: [PATCH] chore: release 5.4.1 --- CHANGELOG.md | 2 +- src/Doctum.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 644cfe15..71c2e834 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] - yyyy-mm-dd -## [5.4.1] - 2021-04-DD +## [5.4.1] - 2021-04-22 - Fixed Search results descriptions render - Fixed PHP 8.0 usort does not want bool anymore on `GitVersionCollection` setups diff --git a/src/Doctum.php b/src/Doctum.php index a66663ea..e6493679 100644 --- a/src/Doctum.php +++ b/src/Doctum.php @@ -51,7 +51,7 @@ class Doctum implements ArrayAccess public const VERSION_MAJOR = 5; public const VERSION_MINOR = 4; public const VERSION_PATCH = 1; - 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' : '');