diff --git a/CHANGELOG.md b/CHANGELOG.md index f69e8e57..eadb7b0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ ChangeLog ========= +5.0.0 (2026-06-15) +------------------ +* #767 Drop PHP 7.4 8.0 8.1 and support PHP 8.2 and up (@phil-davis) +* #769 fix: minor code fixes (@phil-davis) +* #586 PHP types (@tcitworld @phil-davis) + +This major release v5 declares function parameter and return types across the +codebase. Users will need to be careful to call functions/methods with the +correct types. + +Support for PHP below 8.2 has been dropped. +This release supports PHP 8.2 and up. + 4.6.0 (2026-05-31) ------------------ * #718 feat(VCard): add getByTypes method (@JimKnoxx) diff --git a/lib/Version.php b/lib/Version.php index 72391f59..e851a650 100644 --- a/lib/Version.php +++ b/lib/Version.php @@ -14,5 +14,5 @@ class Version /** * Full version number. */ - public const VERSION = '4.6.0'; + public const VERSION = '5.0.0'; }