diff options
| author | Simon Wisselink <s.wisselink@iwink.nl> | 2024-08-14 22:00:42 +0200 |
|---|---|---|
| committer | Simon Wisselink <s.wisselink@iwink.nl> | 2024-08-14 22:00:42 +0200 |
| commit | 77b91a072bfdc9d4fe0c621e47564c95e73fda73 (patch) | |
| tree | c2f4fe6be1c3f939bad301afe1b4e682984137dc | |
| parent | 9ede0e40fa7f1f8bfeb645652adb7e5e27743207 (diff) | |
| download | smarty-77b91a072bfdc9d4fe0c621e47564c95e73fda73.tar.gz smarty-77b91a072bfdc9d4fe0c621e47564c95e73fda73.tar.bz2 smarty-77b91a072bfdc9d4fe0c621e47564c95e73fda73.zip | |
version bump
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | changelog/1030.md | 1 | ||||
| -rw-r--r-- | changelog/1047.md | 1 | ||||
| -rw-r--r-- | src/Smarty.php | 2 |
4 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d903352..40f6145a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.4.0] - 2024-08-14 +- Fixing forced OpCache invalidation on every template include, which is resulting in fast raising wasted OpCache memory [#1007](https://github.com/smarty-php/smarty/issues/1007) +- Improvement of auto-escaping [#1030](https://github.com/smarty-php/smarty/pull/1030) + + ## [5.3.1] - 2024-06-16 - Fixed error when using section with nocache [#1034](https://github.com/smarty-php/smarty/issues/1034) diff --git a/changelog/1030.md b/changelog/1030.md deleted file mode 100644 index f7cba021..00000000 --- a/changelog/1030.md +++ /dev/null @@ -1 +0,0 @@ -- Improvement of auto-escaping [#1030](https://github.com/smarty-php/smarty/pull/1030)
\ No newline at end of file diff --git a/changelog/1047.md b/changelog/1047.md deleted file mode 100644 index 0eaa4349..00000000 --- a/changelog/1047.md +++ /dev/null @@ -1 +0,0 @@ -- Fixing forced OpCache invalidation on every template include, which is resulting in fast raising wasted OpCache memory [#1007](https://github.com/smarty-php/smarty/issues/1007)
\ No newline at end of file diff --git a/src/Smarty.php b/src/Smarty.php index 33910324..a8b66859 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.1'; + const SMARTY_VERSION = '5.4.0'; /** * define caching modes |
