From 44a08bea7c01aa303c06a3e38301c067f036e64c Mon Sep 17 00:00:00 2001 From: Simon Wisselink Date: Wed, 14 Aug 2024 22:04:33 +0200 Subject: [PATCH] version bump --- CHANGELOG.md | 4 ++++ changelog/count.md | 1 - libs/Smarty.class.php | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 changelog/count.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 97355b6df..bff690d84 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] +## [4.5.4] - 2024-08-14 +- Fixed that using `count()` would trigger a deprecation notice. [#813](https://github.com/smarty-php/smarty/issues/813) + + ## [4.5.3] - 2024-05-28 - Fixed a code injection vulnerability in extends-tag. This addresses CVE-2024-35226. diff --git a/changelog/count.md b/changelog/count.md deleted file mode 100644 index 36a3099e3..000000000 --- a/changelog/count.md +++ /dev/null @@ -1 +0,0 @@ -- Fixed that using `count()` would trigger a deprecation notice. [#813](https://github.com/smarty-php/smarty/issues/813) \ No newline at end of file diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index b285a99e0..97706e2aa 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.3'; + const SMARTY_VERSION = '4.5.4'; /** * define variable scopes */