Compare commits

..

1 Commits

Author SHA1 Message Date
Simon Wisselink f1970e0577 Fix use of negative numbers in math equations.
Fixes #895
2023-09-14 10:19:37 +02:00
3 changed files with 2 additions and 6 deletions
-4
View File
@@ -6,10 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [4.3.4] - 2023-09-14
## [4.3.3] - 2023-09-14
### Fixed
- `|strip_tags` does not work if the input is 0 [#890](https://github.com/smarty-php/smarty/issues/890)
- Use of negative numbers in {math} equations [#895](https://github.com/smarty-php/smarty/issues/895)
+1 -1
View File
@@ -107,7 +107,7 @@ class Smarty extends Smarty_Internal_TemplateBase
/**
* smarty version
*/
const SMARTY_VERSION = '4.3.4';
const SMARTY_VERSION = '4.3.2';
/**
* define variable scopes
*/
+1 -1
View File
@@ -14,7 +14,7 @@ sed -i "s/const SMARTY_VERSION = '[^']\+';/const SMARTY_VERSION = '$1';/" libs/S
git add CHANGELOG.md libs/Smarty.class.php
git commit -m "version bump"
git checkout support/4.3
git checkout master
git pull
git merge --no-ff "release/$1"
git branch -d "release/$1"