From 38c478fe0f8ca24c2b12c5c3e0534cf1d670a948 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sat, 10 Apr 2021 03:05:49 +0200 Subject: [PATCH] chore: release 5.4.0 --- CHANGELOG.md | 2 ++ src/Doctum.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20b45ba0..36ac11db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - yyyy-mm-dd +## [5.4.0] - 2021-04-10 + - Drop support for PHP `7.1` - Drop support for `phpdocumentor/reflection-docblock` `4.3` series - Require PHP `7.2.20` diff --git a/src/Doctum.php b/src/Doctum.php index 08f0b5af..fa497a23 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 = 0; - 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' : '');