diff options
| author | Simon Wisselink <s.wisselink@iwink.nl> | 2025-05-03 23:36:46 +0200 |
|---|---|---|
| committer | Simon Wisselink <s.wisselink@iwink.nl> | 2025-05-03 23:36:46 +0200 |
| commit | 372f7cf41a6e2a9ca2e7253bc5f5c4f38df25a63 (patch) | |
| tree | 23c0fdfb5120f9263d7437c82d94cc697aded4d4 | |
| parent | 0b6166482af835fb26aec1e02795969fdb7b65bc (diff) | |
| parent | f659193c946a41cb02a2c9820a29d079875166d0 (diff) | |
| download | smarty-5.5.0.tar.gz smarty-5.5.0.tar.bz2 smarty-5.5.0.zip | |
Merge branch 'release/5.5.0'v5.5.0
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | changelog/1128.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 db336088..087caa3a 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.5.0] - 2025-05-03 +- Support trailing comma in array [#1013](https://github.com/smarty-php/smarty/issues/1013) + + ## [5.4.5] - 2025-04-15 - Fixed deprecation notice in StringEval in PHP8.4 [#1119](https://github.com/smarty-php/smarty/issues/1119) diff --git a/changelog/1128.md b/changelog/1128.md deleted file mode 100644 index c245bd75..00000000 --- a/changelog/1128.md +++ /dev/null @@ -1 +0,0 @@ -- Support trailing comma in array [#1013](https://github.com/smarty-php/smarty/issues/1013)
\ No newline at end of file diff --git a/src/Smarty.php b/src/Smarty.php index eb7dc2d9..8853dee7 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.5'; + const SMARTY_VERSION = '5.5.0'; /** * define caching modes |
