Skip to content

Commit

Permalink
Bump version to 1.3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
eevee committed Dec 15, 2014
1 parent 5c8345d commit f26e994
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions docs/back-matter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
^^^^^^^^^^^^^^^^^^^^

Expand Down
4 changes: 2 additions & 2 deletions scss/scss_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@

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 + ")"
Expand Down

0 comments on commit f26e994

Please sign in to comment.