From 1bb83520806e15c99bae7bc380203095308c51f0 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 7 Jun 2017 12:31:57 -0700 Subject: [PATCH] 0.13.0 --- docs/changes.rst | 19 +++++++++++++++++++ sass.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/docs/changes.rst b/docs/changes.rst index c3d10d3f..9ec5e8dc 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -2,6 +2,25 @@ Changelog ========= +Version 0.13.0 +-------------- + +Released on January 7, 2017. + +- Use ``getfullargspec`` when available in python 3. [:issue:`188` by + Thom Wiggers] +- Use ``sass_copy_c_string`` instead of ``strdup`` for portability + [:issue:`196` by Anthony Sottile] +- Use ``-std=gnu++0x`` to fix installation under cygwin [:issue:`195` + :issue:`197` by Anthony Sottile] +- Correct source map url [:issue:`201` :issue:`202` by Anthony Sottile] +- Remove ``--watch`` [:issue:`203` by Anthony Sottile] +- Follow up the libsass upstream: 3.4.4 --- See the release notes of Libsass + 3.4.4__. [:issue:`205` by Anthony Sottile] + +__ https://github.com/sass/libsass/releases/tag/3.4.4 + + Version 0.12.3 -------------- diff --git a/sass.py b/sass.py index fe3d845f..264ca7c2 100644 --- a/sass.py +++ b/sass.py @@ -31,7 +31,7 @@ 'SassError', 'SassFunction', 'SassList', 'SassMap', 'SassNumber', 'SassWarning', 'and_join', 'compile', 'libsass_version', ) -__version__ = '0.12.3' +__version__ = '0.13.0' libsass_version = _sass.libsass_version