From 7791304b47df376c676af86aceb47d367c95844e Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Thu, 3 Dec 2015 09:20:07 -0800 Subject: [PATCH] 0.9.3 --- docs/changes.rst | 8 ++++++++ sass.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/changes.rst b/docs/changes.rst index e3899940..7bf40115 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,14 @@ Changelog ========= +Version 0.9.3 +------------- + +Released on December 03, 2015. + +- Support "indented" SASS compilation [:issues:`41` by Alice Zoë Bevan–McGregor] +- Fix wheels on windows [:issues:`28` :issues:`49` by Anthony Sottile] + Version 0.9.2 ------------- diff --git a/sass.py b/sass.py index bf2498fd..09a3b232 100644 --- a/sass.py +++ b/sass.py @@ -28,7 +28,7 @@ __all__ = ('MODES', 'OUTPUT_STYLES', 'SOURCE_COMMENTS', 'CompileError', 'SassColor', 'SassError', 'SassFunction', 'SassList', 'SassMap', 'SassNumber', 'SassWarning', 'and_join', 'compile') -__version__ = '0.9.2' +__version__ = '0.9.3' #: (:class:`collections.Mapping`) The dictionary of output styles.