Skip to content

Commit

Permalink
Bump to 0.8.2; requires php 5.6+
Browse files Browse the repository at this point in the history
  • Loading branch information
robocoder committed May 9, 2019
1 parent 1cad1c8 commit 1b168bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ language: php
sudo: false

php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
Expand Down
4 changes: 2 additions & 2 deletions scss.inc.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
if (version_compare(PHP_VERSION, '5.4') < 0) {
throw new \Exception('scssphp requires PHP 5.4 or above');
if (version_compare(PHP_VERSION, '5.6') < 0) {
throw new \Exception('scssphp requires PHP 5.6 or above');
}

if (! class_exists('Leafo\ScssPhp\Version', false)) {
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
*/
class Version
{
const VERSION = 'v0.8.1';
const VERSION = 'v0.8.2';
}

0 comments on commit 1b168bf

Please sign in to comment.