diff --git a/CHANGELOG.md b/CHANGELOG.md index 52dbc9985..97c8b078c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,32 @@ ### Added -- Add support for PHP 8.4 +### Changed ### Removed +## 4.15.0 - 2025-08-24 + +### Fixed + +- Fix DocBlocks for callable route handlers (#3389) +- Change class keyword to lowercase (#3346) +- Fix tests for PHP 8.3 +- Fixes the build status badge in Readme (#3331) +- Fix text and eol attributes for * selector in .gitattributes (#3391) +- Deprecate setArgument/s (#3383) + +### Added + +- Add support for PHP 8.4 +- Add phpstan v2 + +### Changed + +- Update http urls in composer.json (#3399) + +**Full Changelog**: https://github.com/slimphp/Slim/compare/4.14.0...4.15.0 + ## 4.14.0 - 2024-06-13 ### Changed diff --git a/Slim/App.php b/Slim/App.php index 897641635..abe83ffee 100644 --- a/Slim/App.php +++ b/Slim/App.php @@ -43,7 +43,7 @@ class App extends RouteCollectorProxy implements RequestHandlerInterface * * @var string */ - public const VERSION = '4.14.0'; + public const VERSION = '4.15.0'; protected RouteResolverInterface $routeResolver;