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
11 changes: 11 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Changelog
=========

Version 0.6.2
-------------

To be released.

- Follow up the libsass upstream: :upcommit:`3.0.2` ---
See the `release note`__ of libsass.

__ https://github.com/sass/libsass/releases/tag/3.0.2


Version 0.6.1
-------------

Expand Down
2 changes: 1 addition & 1 deletion sass.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

__all__ = ('MODES', 'OUTPUT_STYLES', 'SOURCE_COMMENTS', 'CompileError',
'and_join', 'compile')
__version__ = '0.6.1'
__version__ = '0.6.2'


#: (:class:`collections.Mapping`) The dictionary of output styles.
Expand Down
4 changes: 3 additions & 1 deletion sasstests.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def normalize_path(path):
'version': 3,
'file': 'test/a.css',
'sources': [normalize_source_map_path('test/a.scss')],
'sourcesContent': [],
'names': [],
'mappings': ';AAKA;EAHE,kBAAkB;;EAIpB,KAAK;IAED,OAAO'
}
Expand Down Expand Up @@ -147,7 +148,6 @@ class CompileTestCase(unittest.TestCase):
def test_compile_required_arguments(self):
self.assertRaises(TypeError, sass.compile)


def test_compile_takes_only_keywords(self):
self.assertRaises(TypeError, sass.compile, 'a { color: blue; }')

Expand Down Expand Up @@ -406,6 +406,7 @@ def test_build_one(self):
'version': 3,
'file': '../test/b.css',
'sources': [normalize_source_map_path('../test/b.scss')],
'sourcesContent': [],
'names': [],
'mappings': ';AAAA,EAAE;EAEE,WAAW'
},
Expand All @@ -423,6 +424,7 @@ def test_build_one(self):
'version': 3,
'file': '../test/d.css',
'sources': [normalize_source_map_path('../test/d.scss')],
'sourcesContent': [],
'names': [],
'mappings': ';AAKA;EAHE,kBAAkB;;EAIpB,KAAK;IAED,MAAM'
},
Expand Down