2021-02-15 21:29:38 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Release numbers
|
|
|
|
*/
|
|
|
|
class Less_Version {
|
|
|
|
|
2023-07-07 22:33:10 +02:00
|
|
|
public const version = '3.2.1'; // The current build number of less.php
|
2021-02-15 21:29:38 +01:00
|
|
|
public const less_version = '2.5.3'; // The less.js version that this build should be compatible with
|
|
|
|
public const cache_version = '253'; // The parser cache version
|
|
|
|
|
|
|
|
}
|