diff options
| author | Simon Wisselink <s.wisselink@iwink.nl> | 2024-06-16 21:51:13 +0200 |
|---|---|---|
| committer | Simon Wisselink <s.wisselink@iwink.nl> | 2024-06-16 21:51:13 +0200 |
| commit | 3cb35854326a94120cd415b81db28c53d95d0d5d (patch) | |
| tree | cb256f24aff419dd3007ad87279dd3cf5f959918 | |
| parent | 8ecde472033468efe0149eee53043cfb4fdc6121 (diff) | |
| parent | a2193eb4cfecb49147996874bf5aef362591c6b1 (diff) | |
| download | smarty-3cb35854326a94120cd415b81db28c53d95d0d5d.tar.gz smarty-3cb35854326a94120cd415b81db28c53d95d0d5d.tar.bz2 smarty-3cb35854326a94120cd415b81db28c53d95d0d5d.zip | |
Merge branch 'release/5.3.1'v5.3.1
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | changelog/1034.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 5b8e77e8..8d903352 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.3.1] - 2024-06-16 +- Fixed error when using section with nocache [#1034](https://github.com/smarty-php/smarty/issues/1034) + + ## [5.3.0] - 2024-05-30 - Fix warning when calling hasVariable for an undefined variable [#977](https://github.com/smarty-php/smarty/issues/977) - Added `$smarty->prependTemplateDir()` method [#1022](https://github.com/smarty-php/smarty/issues/1022) diff --git a/changelog/1034.md b/changelog/1034.md deleted file mode 100644 index 1c14a860..00000000 --- a/changelog/1034.md +++ /dev/null @@ -1 +0,0 @@ -- Fixed error when using section with nocache [#1034](https://github.com/smarty-php/smarty/issues/1034)
\ No newline at end of file diff --git a/src/Smarty.php b/src/Smarty.php index 42eefe9a..33910324 100644 --- a/src/Smarty.php +++ b/src/Smarty.php @@ -54,7 +54,7 @@ class Smarty extends \Smarty\TemplateBase { /** * smarty version */ - const SMARTY_VERSION = '5.3.0'; + const SMARTY_VERSION = '5.3.1'; /** * define caching modes |
