diff options
| author | Simon Wisselink <s.wisselink@iwink.nl> | 2025-04-15 13:20:08 +0200 |
|---|---|---|
| committer | Simon Wisselink <s.wisselink@iwink.nl> | 2025-04-15 13:20:08 +0200 |
| commit | e26f82d02c4d18fc82094c28fbc65f711e39ed5d (patch) | |
| tree | 07b822524eae143a5961555026434328d7c5d5f8 | |
| parent | baa53399f550bf85a5177d0912a2c65d9536f3af (diff) | |
| parent | 6ad6a35824ab9494b16a08aaa500f8b71d5fff3c (diff) | |
| download | smarty-5.4.5.tar.gz smarty-5.4.5.tar.bz2 smarty-5.4.5.zip | |
Merge branch 'release/5.4.5'v5.4.5
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | changelog/1119.md | 1 | ||||
| -rw-r--r-- | src/Smarty.php | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b1bf45a..db336088 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.4.5] - 2025-04-15 +- Fixed deprecation notice in StringEval in PHP8.4 [#1119](https://github.com/smarty-php/smarty/issues/1119) + + ## [5.4.4] - 2025-04-13 - Fix syntax error occurring when registering a function plugin that ends with the string 'close' [#1122](https://github.com/smarty-php/smarty/issues/1122) - Replace SMARTY_VERSION constant with $smarty.version in debug.tpl [#1073](https://github.com/smarty-php/smarty/issues/1073) diff --git a/changelog/1119.md b/changelog/1119.md deleted file mode 100644 index e9b176dd..00000000 --- a/changelog/1119.md +++ /dev/null @@ -1 +0,0 @@ -- Fixed deprecation notice in StringEval in PHP8.4 [#1119](https://github.com/smarty-php/smarty/issues/1119) diff --git a/src/Smarty.php b/src/Smarty.php index 5fed1579..eb7dc2d9 100644 --- a/src/Smarty.php +++ b/src/Smarty.php @@ -54,7 +54,7 @@ class Smarty extends \Smarty\TemplateBase { /** * smarty version */ - const SMARTY_VERSION = '5.4.4'; + const SMARTY_VERSION = '5.4.5'; /** * define caching modes |
