diff --git a/CHANGES.md b/CHANGES.md index a9e94c89..906a9af1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,2 +1,6 @@ This is where the changelog will go for 1.7.0.9 or higher now. +# 1.7.0.9 + + - Remove space at beginning of Version.php + - Revert require() paths in test interface \ No newline at end of file diff --git a/lib/Less/Version.php b/lib/Less/Version.php index 423a9698..704ec6e0 100644 --- a/lib/Less/Version.php +++ b/lib/Less/Version.php @@ -8,7 +8,7 @@ */ class Less_Version{ - const version = '1.7.0.8'; // The current build number of less.php + const version = '1.7.0.9'; // The current build number of less.php const less_version = '1.7'; // The less.js version that this build should be compatible with const cache_version = '170'; // The parser cache version diff --git a/test/index.php b/test/index.php index 30c998c1..8ae36da5 100755 --- a/test/index.php +++ b/test/index.php @@ -15,9 +15,9 @@ //get parser -require_once $dir.'/../lib/Less/Autoloader.php'; +require_once $dir.'/lib/Less/Autoloader.php'; Less_Autoloader::register(); -require_once $dir.'/../lessc.inc.php'; +require_once $dir.'/lessc.inc.php'; //? performance improvement (php 5.3+)