diff --git a/CHANGELOG.md b/CHANGELOG.md index 36ca3c03..a978be90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Released +## [1.36.8] - 2025-10-24 + +### Fixed +- Fix: Creation of dynamic property error in Dust\Evaluate\Bodies::$dummy (deprecated since PHP 8.2) + ## [1.36.7] - 2025-06-26 ### Added diff --git a/dust/Evaluate/Bodies.php b/dust/Evaluate/Bodies.php index bd65732c..86c555a2 100644 --- a/dust/Evaluate/Bodies.php +++ b/dust/Evaluate/Bodies.php @@ -15,6 +15,12 @@ class Bodies implements \ArrayAccess */ public $block; + /** + * Dummy property for DustPress helper prerun + * @var bool + */ + public $dummy; + /** * @param \Dust\Ast\Section $section */ diff --git a/dustpress.php b/dustpress.php index 158e7b72..d3218a13 100644 --- a/dustpress.php +++ b/dustpress.php @@ -6,7 +6,7 @@ Author: Miika Arponen & Ville Siltala / Geniem Oy Author URI: http://www.geniem.com License: GPLv3 -Version: 1.36.7 +Version: 1.36.8 */ final class DustPress {