From 29e14517d40b321bdbf8823eae1c327fc6b227f5 Mon Sep 17 00:00:00 2001 From: Hannah Okwelum Date: Fri, 9 Aug 2024 09:48:22 +0100 Subject: [PATCH] Tag v5.1.1 Change-Id: Ibdaf63b6bb9d68f46eeab0fa87104a7e9e7da257 --- CHANGES.md | 5 +++++ lib/Less/Version.php | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 3f39731b..641133d3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changelog +## v5.1.1 + +Fixed: +* Fix compiling of PHP-injected variables with false, null or empty string (Hannah Okwelum) + ## v5.1.0 Added: diff --git a/lib/Less/Version.php b/lib/Less/Version.php index 60f7d05e..5339003a 100644 --- a/lib/Less/Version.php +++ b/lib/Less/Version.php @@ -6,11 +6,11 @@ class Less_Version { /* Current release version of less.php */ - public const version = '5.1.0'; + public const version = '5.1.1'; /* Upstream less.js version that this release should be compatible with */ public const less_version = '3.13.1'; /* Parser cache version */ - public const cache_version = '3131-2'; + public const cache_version = '3131-3'; }