You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
328 B
15 lines
328 B
<?php
|
|
|
|
/**
|
|
* Release numbers
|
|
*
|
|
* @package Less
|
|
* @subpackage version
|
|
*/
|
|
class Less_Version{
|
|
|
|
const version = '1.7.0.10'; // The current build number of less.php
|
|
const less_version = '1.7.0'; // The less.js version that this build should be compatible with
|
|
const cache_version = '170'; // The parser cache version
|
|
|
|
}
|
|
|