From 7721e5d7869f4817fb47dd9dfc4421c6ae1dc5bd Mon Sep 17 00:00:00 2001 From: Simon Wisselink Date: Tue, 26 Aug 2025 10:37:44 +0200 Subject: [PATCH] version bump --- CHANGELOG.md | 5 +++++ changelog/1073.md | 1 - changelog/1100.md | 1 - libs/Smarty.class.php | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) delete mode 100644 changelog/1073.md delete mode 100644 changelog/1100.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 4395a309..3af862d3 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] +## [4.5.6] - 2025-08-26 +- Fixed that modifiers called like function would be compiled to modifier name instead of calling the registered callback [#1100](https://github.com/smarty-php/smarty/issues/1100) +- Replace SMARTY_VERSION constant with $smarty.version in debug.tpl [#1073](https://github.com/smarty-php/smarty/issues/1073) + + - Fixed escaping of array/object keys in debug_print_var ## [4.5.5] - 2024-11-21 diff --git a/changelog/1073.md b/changelog/1073.md deleted file mode 100644 index 0b30594d..00000000 --- a/changelog/1073.md +++ /dev/null @@ -1 +0,0 @@ -- Replace SMARTY_VERSION constant with $smarty.version in debug.tpl [#1073](https://github.com/smarty-php/smarty/issues/1073) diff --git a/changelog/1100.md b/changelog/1100.md deleted file mode 100644 index d1b69006..00000000 --- a/changelog/1100.md +++ /dev/null @@ -1 +0,0 @@ -- Fixed that modifiers called like function would be compiled to modifier name instead of calling the registered callback [#1100](https://github.com/smarty-php/smarty/issues/1100) diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index 071cc94f..a9309a37 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -107,7 +107,7 @@ class Smarty extends Smarty_Internal_TemplateBase /** * smarty version */ - const SMARTY_VERSION = '4.5.5'; + const SMARTY_VERSION = '4.5.6'; /** * define variable scopes */