Skip to content

Commit

Permalink
Tag v4.2.1
Browse files Browse the repository at this point in the history
Change-Id: I3d3368ecbaa8e1459311e1dcbceb4f509e881a39
  • Loading branch information
Krinkle committed Feb 25, 2024
1 parent a113853 commit 9bdb3fd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions lib/Less/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}

0 comments on commit 9bdb3fd

Please sign in to comment.