Skip to content

Commit 1b168bf

Browse files
committed
Bump to 0.8.2; requires php 5.6+
1 parent 1cad1c8 commit 1b168bf

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ language: php
22
sudo: false
33

44
php:
5-
- 5.4
6-
- 5.5
75
- 5.6
86
- 7.0
97
- 7.1

scss.inc.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
2-
if (version_compare(PHP_VERSION, '5.4') < 0) {
3-
throw new \Exception('scssphp requires PHP 5.4 or above');
2+
if (version_compare(PHP_VERSION, '5.6') < 0) {
3+
throw new \Exception('scssphp requires PHP 5.6 or above');
44
}
55

66
if (! class_exists('Leafo\ScssPhp\Version', false)) {

src/Version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
*/
1919
class Version
2020
{
21-
const VERSION = 'v0.8.1';
21+
const VERSION = 'v0.8.2';
2222
}

0 commit comments

Comments
 (0)