From 9bdb3fda0452a05769e51d9941f2cfc0871d5fc0 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Sun, 25 Feb 2024 01:54:22 +0000 Subject: [PATCH] Tag v4.2.1 Change-Id: I3d3368ecbaa8e1459311e1dcbceb4f509e881a39 --- CHANGES.md | 10 ++++++++++ lib/Less/Version.php | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 1fb4bc50..75858e6b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,15 @@ # Changelog +## 4.2.1 + +Added: +* Add support for `/deep/` selectors (Hannah Okwelum) [T352862](https://phabricator.wikimedia.org/T352862) + +Fixed: +* Fix ParseError in some division expressions (Hannah Okwelum) [T358256](https://phabricator.wikimedia.org/T358256) +* Fix `when()` matching between string and non-string (Timo Tijhof) [T358159](https://phabricator.wikimedia.org/T358159) +* Preserve whitespace before `;` or `!` in simple rules (Hannah Okwelum) [T352911](https://phabricator.wikimedia.org/T352911) + ## 4.2.0 Added: diff --git a/lib/Less/Version.php b/lib/Less/Version.php index 6b92f29b..fbef9787 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 = '4.2.0'; + public const version = '4.2.1'; /* Upstream less.js version that this release should be compatible with */ public const less_version = '2.5.3'; /* Parser cache version */ - public const cache_version = '253-1'; + public const cache_version = '253-2'; }