Skip to content

Commit

Permalink
Update libsass to 3.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fschwahn committed May 18, 2017
1 parent 1852a3e commit 20d52e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.4](https://github.com/sass/libsass/releases/tag/3.4.4)

## Installation

Expand Down Expand Up @@ -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
- **master**
- [Update to libsass 3.4.4](https://github.com/sass/sassc-ruby/pull/66)
- **1.11.2**
- [Update to libsass 3.4.3](https://github.com/sass/sassc-ruby/pull/65)
- **1.11.1**
Expand Down
2 changes: 1 addition & 1 deletion ext/libsass
Submodule libsass updated 92 files
+3 −0 .gitignore
+37 −18 .travis.yml
+1 −1 GNUmakefile.am
+5 −1 Makefile
+1 −0 Makefile.conf
+61 −57 Readme.md
+6 −2 appveyor.yml
+2 −2 configure.ac
+29 −21 docs/api-context-internal.md
+26 −6 docs/api-context.md
+48 −15 docs/api-doc.md
+1 −1 docs/api-function-example.md
+31 −7 docs/api-function.md
+19 −19 docs/api-importer.md
+0 −3 include/sass/base.h
+17 −2 include/sass/context.h
+31 −0 include/sass/functions.h
+4 −4 res/resource.rc
+9 −4 script/ci-build-libsass
+62 −0 script/ci-build-plugin
+13 −3 script/ci-report-coverage
+385 −396 src/ast.cpp
+278 −365 src/ast.hpp
+17 −1 src/ast_def_macros.hpp
+29 −0 src/ast_fwd_decl.cpp
+87 −21 src/ast_fwd_decl.hpp
+3 −1 src/b64/encode.h
+3 −3 src/backtrace.hpp
+32 −25 src/bind.cpp
+0 −1 src/bind.hpp
+74 −74 src/check_nesting.cpp
+1 −3 src/check_nesting.hpp
+6 −8 src/color_maps.hpp
+27 −26 src/context.cpp
+1 −0 src/context.hpp
+84 −79 src/cssize.cpp
+0 −1 src/cssize.hpp
+229 −242 src/debugger.hpp
+65 −14 src/environment.cpp
+28 −7 src/environment.hpp
+9 −1 src/error_handling.cpp
+5 −2 src/error_handling.hpp
+367 −288 src/eval.cpp
+9 −7 src/eval.hpp
+125 −120 src/expand.cpp
+0 −2 src/expand.hpp
+272 −281 src/extend.cpp
+43 −11 src/extend.hpp
+58 −22 src/file.cpp
+14 −3 src/file.hpp
+135 −138 src/functions.cpp
+0 −3 src/functions.hpp
+26 −26 src/inspect.cpp
+1 −2 src/inspect.hpp
+0 −1 src/lexer.cpp
+4 −4 src/lexer.hpp
+3 −2 src/listize.cpp
+0 −1 src/listize.hpp
+15 −17 src/memory/SharedPtr.cpp
+47 −43 src/memory/SharedPtr.hpp
+29 −35 src/node.cpp
+6 −8 src/node.hpp
+0 −2 src/operation.hpp
+13 −13 src/output.cpp
+348 −213 src/parser.cpp
+20 −9 src/parser.hpp
+28 −10 src/plugins.cpp
+1 −1 src/position.hpp
+1 −2 src/prelexer.cpp
+2 −2 src/prelexer.hpp
+9 −10 src/remove_placeholders.cpp
+1 −5 src/remove_placeholders.hpp
+58 −2 src/sass.cpp
+33 −7 src/sass_context.cpp
+3 −4 src/sass_context.hpp
+63 −1 src/sass_functions.cpp
+19 −1 src/sass_functions.hpp
+3 −3 src/sass_util.cpp
+4 −4 src/sass_util.hpp
+35 −36 src/sass_values.cpp
+15 −17 src/source_map.cpp
+6 −8 src/subset_map.cpp
+6 −6 src/subset_map.hpp
+0 −2 src/to_value.cpp
+39 −37 src/units.cpp
+0 −21 src/units.hpp
+44 −39 src/util.cpp
+13 −22 src/values.cpp
+13 −2 win/libsass.sln
+9 −0 win/libsass.sln.DotSettings
+1 −0 win/libsass.targets
+3 −0 win/libsass.vcxproj.filters
2 changes: 1 addition & 1 deletion test/native_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.4", Native.version
end
end

Expand Down

0 comments on commit 20d52e9

Please sign in to comment.