summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2014-12-15 14:52:44 -0800
committerEevee (Alex Munroe) <eevee.git@veekun.com>2014-12-15 14:52:44 -0800
commitf26e99445dc8eada34406fab7185480f252bdb6c (patch)
tree731760416190ec794c009841f6c7493a675d993d
parent5c8345d387607408409537eb4869ffa0640ba64c (diff)
downloadpyscss-f26e99445dc8eada34406fab7185480f252bdb6c.tar.gz
Bump version to 1.3.4.v1.3.4
-rw-r--r--docs/back-matter.rst12
-rw-r--r--scss/scss_meta.py4
2 files changed, 14 insertions, 2 deletions
diff --git a/docs/back-matter.rst b/docs/back-matter.rst
index bd4ad72..fdae94d 100644
--- a/docs/back-matter.rst
+++ b/docs/back-matter.rst
@@ -67,6 +67,18 @@ working hours. Yelp does not claim copyright.
Changelog
---------
+1.3.4 (Dec 15, 2014)
+^^^^^^^^^^^^^^^^^^^^
+
+* The modulus (``%``) operator is now supported.
+* ``/`` and ``-`` inside an expression work correctly; this fixes some cases of using vanilla CSS's ``/`` syntax.
+* Relative imports have been more fixed.
+* Line numbers in error messages are... more likely to be correct.
+* Sass at-blocks now parse correctly even when there's no space after the block name, e.g. ``@if(foo){...}``.
+* A few more cases of ``#{...}`` being replaced lexically have been switched to real parsing.
+
+With these changes, pyScss can now successfully compile Zurb Foundation 5.
+
1.3.3 (Nov 18, 2014)
^^^^^^^^^^^^^^^^^^^^
diff --git a/scss/scss_meta.py b/scss/scss_meta.py
index 5b4e1f4..7f17b9a 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, 3)
-DATE_INFO = (2014, 11, 18) # YEAR, MONTH, DAY
+VERSION_INFO = (1, 3, 4)
+DATE_INFO = (2014, 12, 15) # YEAR, MONTH, DAY
VERSION = '.'.join(str(i) for i in VERSION_INFO)
REVISION = '%04d%02d%02d' % DATE_INFO
BUILD_INFO = "pyScss v" + VERSION + " (" + REVISION + ")"