Skip to content

Commit

Permalink
Tag v5.2.0
Browse files Browse the repository at this point in the history
Change-Id: I02e803f4da19f76270c8e0ff801ac301f0f38e48
  • Loading branch information
Krinkle committed Jan 30, 2025
1 parent c6218a2 commit bbfae3b
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

## v5.2.0

Added:
* Add support for BrianHenryIE/strauss codemod in Less_Visitor (Stefan Warnat)

Fixed:
* Fix "PHP Warning: Undefined array key currentUri" when using `@import (inline)` (tck) [T380641](https://phabricator.wikimedia.org/T380641)
* Fix "Implicit conversion from float to int" PHP 8.1 warning when using `hsv()` (Peter Knut)
* Less_Visitor: Faster class mapping in `visitObj` by using inline cache (Thiemo Kreuz)

## v5.1.2

Fixed:
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 = '5.1.2';
public const version = '5.2.0';

/* 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-4';
public const cache_version = '3131-5';
}

1 comment on commit bbfae3b

@RV7PR
Copy link

@RV7PR RV7PR commented on bbfae3b Jan 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tag is not available yet

Please sign in to comment.