diff options
| author | Simon Wisselink <s.wisselink@iwink.nl> | 2024-02-26 14:36:56 +0100 |
|---|---|---|
| committer | Simon Wisselink <s.wisselink@iwink.nl> | 2024-02-26 14:36:56 +0100 |
| commit | 4af5cc760d6e617ce4af70a886cf50398a316475 (patch) | |
| tree | 415b38a907296e2c567098485d4d43b4294866d5 | |
| parent | 41d80b99ac4fe8d8bdd9ae370841dfd081a7669b (diff) | |
| download | smarty-4af5cc760d6e617ce4af70a886cf50398a316475.tar.gz smarty-4af5cc760d6e617ce4af70a886cf50398a316475.tar.bz2 smarty-4af5cc760d6e617ce4af70a886cf50398a316475.zip | |
version bump
| -rw-r--r-- | CHANGELOG.md | 6 | ||||
| -rw-r--r-- | src/Smarty.php | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9903d7ec..cacb708f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.0.0-rc3] - 2024-02-26 +- Add support for implode, substr and json_encode as modifiers/functions in templates [#939](https://github.com/smarty-php/smarty/issues/939) +- Add template path to CompilerException to enable rich debug features [#935](https://github.com/smarty-php/smarty/issues/935) +- Fix incorrect compilation of expressions when escape_html=true [#930](https://github.com/smarty-php/smarty/pull/930) + + ### Added - PHP8.3 support [#925](https://github.com/smarty-php/smarty/issues/925) - Backlink to GitHub in docs diff --git a/src/Smarty.php b/src/Smarty.php index b40cd8d2..0fdf6dbd 100644 --- a/src/Smarty.php +++ b/src/Smarty.php @@ -53,7 +53,7 @@ class Smarty extends \Smarty\TemplateBase { /** * smarty version */ - const SMARTY_VERSION = '5.0.0-rc2'; + const SMARTY_VERSION = '5.0.0-rc3'; /** * define caching modes |
