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 */