Skip to content

Commit

Permalink
Libsass to 3.6.1. Add in 7.3 to Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
absalomedia committed Jul 1, 2019
1 parent 53945ac commit 8c36fe1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ php:
- 7.0
- 7.1
- 7.2
- 7.3
- nightly

allow_failures:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The `sass` extension for PHP gives you an object-oriented system of parsing [Sass](http://sass-lang.com/) from within your PHP applications. Under the hood it uses [libsass](https://github.com/hcatlin/libsass) to provide super speedy and compatible Sass parsing.

![Libsass 3.5.5](https://img.shields.io/badge/libsass-3.5.5-yellow.svg) [![Build Status](https://travis-ci.org/absalomedia/sassphp.svg)](https://travis-ci.org/absalomedia/sassphp) [![codecov](https://codecov.io/gh/absalomedia/sassphp/branch/master/graph/badge.svg)](https://codecov.io/gh/absalomedia/sassphp) [![Patreon](https://img.shields.io/badge/patreon-donate-green.svg)](https://www.patreon.com/bePatron?u=14641360)
![Libsass 3.6.1](https://img.shields.io/badge/libsass-3.6.1-yellow.svg) [![Build Status](https://travis-ci.org/absalomedia/sassphp.svg)](https://travis-ci.org/absalomedia/sassphp) [![codecov](https://codecov.io/gh/absalomedia/sassphp/branch/master/graph/badge.svg)](https://codecov.io/gh/absalomedia/sassphp) [![Patreon](https://img.shields.io/badge/patreon-donate-green.svg)](https://www.patreon.com/bePatron?u=14641360)

## What's Sass?

Expand Down Expand Up @@ -172,6 +172,7 @@ These extensions also utilise the [Libsass](https://github.com/hcatlin/libsass)

| Release | Description |
| ------- | ----------------------------------------------------------------------------------------- |
| 0.6.1 | Bond - Monaco (Libsass 3.6.1) |
| 0.6.0 | Symfony - Composer integration |
| 0.5.17 | Engine - Vroom vroom (Libsass 3.5.5) |
| 0.5.16 | Humpback - Maloo (Libsass 3.5.4) |
Expand Down
2 changes: 1 addition & 1 deletion lib/libsass
2 changes: 1 addition & 1 deletion src/php_sass.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "config.h"
#endif

#define SASS_VERSION "0.5.17"
#define SASS_VERSION "0.6.1"
#define SASS_FLAVOR "Sassyphpras"

#include <php.h>
Expand Down
2 changes: 1 addition & 1 deletion tests/check_bundled_libsass_version.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ check bundled libsass version
--FILE--
<?php

echo version_compare(Sass::getLibraryVersion(), '3.5.5')
echo version_compare(Sass::getLibraryVersion(), '3.6.1')

?>
--EXPECT--
Expand Down

0 comments on commit 8c36fe1

Please sign in to comment.