From b133cbc9440c9ecaca18568a3bd8ef3dfa395e05 Mon Sep 17 00:00:00 2001 From: Ryan Boland Date: Mon, 2 Jul 2018 09:08:07 -0400 Subject: [PATCH 1/2] update libsass --- README.md | 4 +++- ext/libsass | 2 +- test/native_test.rb | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 82918d85..e00e71f7 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This gem combines the speed of `libsass`, the [Sass C implementation](https://gi ### libsass Version -[3.4.3](https://github.com/sass/libsass/releases/tag/3.4.3) +[3.5.4](https://github.com/sass/libsass/releases/tag/3.5.4) ## Installation @@ -48,6 +48,8 @@ This gem is maintained by [Ryan Boland](https://ryanboland.com) and [awesome contributors](https://github.com/bolandrm/sassc-ruby/graphs/contributors). ## Changelog +- **1.12.0** + - Update Libsass to 3.5.4 - **1.11.4** - Fix `Value::List` related issue with sass 3.5.0 - **1.11.3** diff --git a/ext/libsass b/ext/libsass index b28de012..1e52b743 160000 --- a/ext/libsass +++ b/ext/libsass @@ -1 +1 @@ -Subproject commit b28de01270a663b3e89427a18816732c4d573c1d +Subproject commit 1e52b74306b7d73a617396c912ca436dc55fd4d8 diff --git a/test/native_test.rb b/test/native_test.rb index 4545b970..25cd894f 100644 --- a/test/native_test.rb +++ b/test/native_test.rb @@ -9,7 +9,7 @@ module NativeTest class General < MiniTest::Test def test_it_reports_the_libsass_version - assert_equal "3.4.3", Native.version + assert_equal "3.5.4", Native.version end end From c354c650f18e465ba90d73431859e6d61bc54c1c Mon Sep 17 00:00:00 2001 From: Ryan Boland Date: Mon, 2 Jul 2018 09:09:10 -0400 Subject: [PATCH 2/2] update ruby versions --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 59efbd11..5534161d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,8 @@ language: ruby bundler_args: "--binstubs --standalone --without documentation --path ../bundle" script: "bundle exec rake test" rvm: - - 2.2.0 - 2.3.3 - - 2.4.0 + - 2.4.4 + - 2.5.1 notifications: email: false