diff options
-rw-r--r-- | docs/back-matter.rst | 7 | ||||
-rw-r--r-- | scss/scss_meta.py | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/docs/back-matter.rst b/docs/back-matter.rst index b8e994e..bd4ad72 100644 --- a/docs/back-matter.rst +++ b/docs/back-matter.rst @@ -67,6 +67,13 @@ working hours. Yelp does not claim copyright. Changelog --------- +1.3.3 (Nov 18, 2014) +^^^^^^^^^^^^^^^^^^^^ + +* URLs with quotes now parse as the `Url` type, not as generic functions. Fixes some uses of ``@import``. +* A ``return`` got lost in the Compass gradient code, which would break some uses of gradients. +* Some API work in an attempt to get django-pyscss working against 1.3. + 1.3.2 (Oct 17, 2014) ^^^^^^^^^^^^^^^^^^^^ diff --git a/scss/scss_meta.py b/scss/scss_meta.py index 384a40a..5b4e1f4 100644 --- a/scss/scss_meta.py +++ b/scss/scss_meta.py @@ -46,8 +46,8 @@ from __future__ import unicode_literals import sys -VERSION_INFO = (1, 3, 2) -DATE_INFO = (2014, 10, 17) # YEAR, MONTH, DAY +VERSION_INFO = (1, 3, 3) +DATE_INFO = (2014, 11, 18) # YEAR, MONTH, DAY VERSION = '.'.join(str(i) for i in VERSION_INFO) REVISION = '%04d%02d%02d' % DATE_INFO BUILD_INFO = "pyScss v" + VERSION + " (" + REVISION + ")" |