Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions 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.1](https://github.com/sass/libsass/releases/tag/3.4.1)
[3.4.3](https://github.com/sass/libsass/releases/tag/3.4.3)

## Installation

Expand Down Expand Up @@ -48,7 +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.3](https://github.com/sass/sassc-ruby/pull/65)
- **1.11.1**
- [Update to libsass 3.4.1](https://github.com/sass/sassc-ruby/pull/61)
- **1.11.0**
Expand Down
2 changes: 1 addition & 1 deletion ext/libsass
Submodule libsass updated 78 files
+2 −1 Makefile.conf
+10 −5 appveyor.yml
+223 −0 docs/dev-ast-memory.md
+2 −0 include/sass/base.h
+7 −4 script/bootstrap
+3 −3 script/ci-build-libsass
+2 −0 script/ci-install-compiler
+2 −1 script/ci-report-coverage
+103 −0 script/test-leaks.pl
+621 −495 src/ast.cpp
+801 −367 src/ast.hpp
+5 −5 src/ast_def_macros.hpp
+0 −92 src/ast_factory.hpp
+312 −14 src/ast_fwd_decl.hpp
+54 −51 src/bind.cpp
+3 −7 src/bind.hpp
+117 −120 src/check_nesting.cpp
+38 −34 src/check_nesting.hpp
+3 −3 src/color_maps.cpp
+3 −3 src/color_maps.hpp
+33 −34 src/context.cpp
+12 −14 src/context.hpp
+200 −228 src/cssize.cpp
+49 −49 src/cssize.hpp
+260 −241 src/debugger.hpp
+6 −6 src/emitter.cpp
+7 −7 src/emitter.hpp
+2 −2 src/environment.cpp
+0 −2 src/environment.hpp
+5 −5 src/error_handling.cpp
+12 −12 src/error_handling.hpp
+412 −401 src/eval.cpp
+61 −62 src/eval.hpp
+223 −204 src/expand.cpp
+42 −42 src/expand.hpp
+198 −201 src/extend.cpp
+12 −14 src/extend.hpp
+4 −5 src/file.hpp
+413 −418 src/functions.cpp
+7 −10 src/functions.hpp
+115 −109 src/inspect.cpp
+69 −69 src/inspect.hpp
+31 −33 src/listize.cpp
+8 −10 src/listize.hpp
+116 −0 src/memory/SharedPtr.cpp
+202 −0 src/memory/SharedPtr.hpp
+0 −77 src/memory_manager.cpp
+0 −48 src/memory_manager.hpp
+45 −43 src/node.cpp
+15 −15 src/node.hpp
+136 −136 src/operation.hpp
+48 −49 src/output.cpp
+14 −14 src/output.hpp
+530 −554 src/parser.cpp
+91 −96 src/parser.hpp
+13 −10 src/prelexer.cpp
+25 −21 src/remove_placeholders.cpp
+7 −7 src/remove_placeholders.hpp
+2 −1 src/sass2scss.cpp
+125 −107 src/sass_context.cpp
+1 −1 src/sass_context.hpp
+5 −5 src/sass_util.hpp
+27 −27 src/sass_values.cpp
+2 −2 src/source_map.cpp
+2 −2 src/source_map.hpp
+57 −0 src/subset_map.cpp
+8 −76 src/subset_map.hpp
+13 −13 src/to_c.cpp
+14 −14 src/to_c.hpp
+20 −20 src/to_value.cpp
+20 −21 src/to_value.hpp
+55 −88 src/util.cpp
+9 −13 src/util.hpp
+27 −26 src/values.cpp
+2 −2 src/values.hpp
+69 −69 test/test_subset_map.cpp
+3 −2 win/libsass.targets
+9 −6 win/libsass.vcxproj.filters
1 change: 0 additions & 1 deletion sassc.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ Gem::Specification.new do |spec|
end
end
end

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.1", Native.version
assert_equal "3.4.3", Native.version
end
end

Expand Down