diff options
| -rw-r--r-- | CHANGELOG.md | 7 | ||||
| -rw-r--r-- | changelog/1151.md | 1 | ||||
| -rw-r--r-- | changelog/1152.md | 1 | ||||
| -rw-r--r-- | changelog/1169.md | 1 | ||||
| -rw-r--r-- | changelog/1171.md | 1 | ||||
| -rw-r--r-- | src/Smarty.php | 2 |
6 files changed, 8 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 59225433..da75ec2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.8.0] - 2026-02-15 +- Added support for Backed Enums for php versions >= 8.1 [#1171](https://github.com/smarty-php/smarty/pull/1171) +- Added support for new 'matches' operator doing regex matching [#1169](https://github.com/smarty-php/smarty/pull/1169) +- Update documentation to clarify that include inline is currently not implemented in Smarty v5 [#1152](https://github.com/smarty-php/smarty/issues/1152) +- Support for Laravel Collections style object chaining for objects return from function calls implemented as modifiers [#1151](https://github.com/smarty-php/smarty/issues/1151) + + ## [5.7.0] - 2025-11-19 - PHP 8.5 support diff --git a/changelog/1151.md b/changelog/1151.md deleted file mode 100644 index 3e3d91b0..00000000 --- a/changelog/1151.md +++ /dev/null @@ -1 +0,0 @@ -- Support for Laravel Collections style object chaining for objects return from function calls implemented as modifiers [#1151](https://github.com/smarty-php/smarty/issues/1151)
\ No newline at end of file diff --git a/changelog/1152.md b/changelog/1152.md deleted file mode 100644 index 42b6c0c9..00000000 --- a/changelog/1152.md +++ /dev/null @@ -1 +0,0 @@ -- Update documentation to clarify that include inline is currently not implemented in Smarty v5 [#1152](https://github.com/smarty-php/smarty/issues/1152)
\ No newline at end of file diff --git a/changelog/1169.md b/changelog/1169.md deleted file mode 100644 index e1a11bd0..00000000 --- a/changelog/1169.md +++ /dev/null @@ -1 +0,0 @@ -- Added support for new 'matches' operator doing regex matching [#1169](https://github.com/smarty-php/smarty/pull/1169)
\ No newline at end of file diff --git a/changelog/1171.md b/changelog/1171.md deleted file mode 100644 index 978214a2..00000000 --- a/changelog/1171.md +++ /dev/null @@ -1 +0,0 @@ -- Added support for Backed Enums for php versions >= 8.1 [#1171](https://github.com/smarty-php/smarty/pull/1171) diff --git a/src/Smarty.php b/src/Smarty.php index 73df97ed..5665ff45 100644 --- a/src/Smarty.php +++ b/src/Smarty.php @@ -54,7 +54,7 @@ class Smarty extends \Smarty\TemplateBase { /** * smarty version */ - const SMARTY_VERSION = '5.7.0'; + const SMARTY_VERSION = '5.8.0'; /** * define caching modes |
