From 599f47019da132008fecb168d272fd814ac85821 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Tue, 15 Dec 2015 10:42:43 -0800 Subject: [PATCH] 0.10.0 --- docs/changes.rst | 9 +++++++++ sass.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/changes.rst b/docs/changes.rst index 7bf40115..333c2673 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,15 @@ Changelog ========= +Version 0.10.0 +------------- + +Released on December 15, 2015. + +- Support custom import callbacks [:issues:`81` by Alice Zoë Bevan–McGregor, + Anthony Sottile] +- Disallow arbitrary kwargs in compile() [:issues:`109` by Anthony Sottile] + Version 0.9.3 ------------- diff --git a/sass.py b/sass.py index b60e15dc..f2ea2ea7 100644 --- a/sass.py +++ b/sass.py @@ -29,7 +29,7 @@ __all__ = ('MODES', 'OUTPUT_STYLES', 'SOURCE_COMMENTS', 'CompileError', 'SassColor', 'SassError', 'SassFunction', 'SassList', 'SassMap', 'SassNumber', 'SassWarning', 'and_join', 'compile') -__version__ = '0.9.3' +__version__ = '0.10.0' #: (:class:`collections.Mapping`) The dictionary of output styles.