diff --git a/CHANGELOG.md b/CHANGELOG.md index 6497bae..6a5a317 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ ChangeLog ========= +6.0.3 (2026-07-07) +------------------ +* #162 fix: Do not sort listeners differently depending on their type ( @come-nc ) + 6.0.2 (2026-04-27) ------------------ * #144 chore: adjust code for cs-fixer no-useless-else ( @phil-davis ) diff --git a/composer.json b/composer.json index f54cd55..4175a43 100644 --- a/composer.json +++ b/composer.json @@ -47,12 +47,12 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.95", - "phpstan/phpstan": "^2.1", + "phpstan/phpstan": "^2.2", "phpstan/phpstan-phpunit": "^2.0", "phpstan/phpstan-strict-rules": "^2.0", "phpstan/extension-installer": "^1.4", "phpunit/phpunit": "^9.6", - "rector/rector": "^2.3" + "rector/rector": "^2.5" }, "scripts": { "phpstan": [ diff --git a/lib/Version.php b/lib/Version.php index d65fef4..1917ba3 100644 --- a/lib/Version.php +++ b/lib/Version.php @@ -16,5 +16,5 @@ class Version /** * Full version number. */ - public const VERSION = '6.0.2'; + public const VERSION = '6.0.3'; }