From f952902aace3c48f6f7fe760074dd31b56435089 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sat, 18 Jul 2020 23:17:00 +0200 Subject: [PATCH] chore: release 5.0.0 --- CHANGELOG.md | 2 +- src/Doctum.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce9766be..3e5ff626 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.0] - 2020-07-xx +## [5.0.0] - 2020-07-18 - Forked the project - Removed all GIT tags diff --git a/src/Doctum.php b/src/Doctum.php index da65e058..bf2c4ec9 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 = 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' : '');