From 86712d21fe7c3abdd7e593973fb35010422f1a41 Mon Sep 17 00:00:00 2001 From: "Eevee (Alex Munroe)" Date: Fri, 17 Oct 2014 16:02:48 -0700 Subject: Bump version to 1.3.2. --- docs/back-matter.rst | 10 ++++++++++ scss/scss_meta.py | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/back-matter.rst b/docs/back-matter.rst index 22d342c..b8e994e 100644 --- a/docs/back-matter.rst +++ b/docs/back-matter.rst @@ -67,6 +67,16 @@ working hours. Yelp does not claim copyright. Changelog --------- +1.3.2 (Oct 17, 2014) +^^^^^^^^^^^^^^^^^^^^ + +* Fix another couple embarrassing bugs, this time with the CLI. +* Fix the auto behavior of ``join()`` to match Ruby. +* Fully allow arbitrary expressions as map keys; previously, this only worked + for the first key. LL(1) is hard. +* Restore Python 3.2 compatibility. +* Travis CI and Coveralls are now enabled. + 1.3.1 (Oct 16, 2014) ^^^^^^^^^^^^^^^^^^^^ diff --git a/scss/scss_meta.py b/scss/scss_meta.py index fd6f8f1..384a40a 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, 1) -DATE_INFO = (2014, 10, 16) # YEAR, MONTH, DAY +VERSION_INFO = (1, 3, 2) +DATE_INFO = (2014, 10, 17) # YEAR, MONTH, DAY VERSION = '.'.join(str(i) for i in VERSION_INFO) REVISION = '%04d%02d%02d' % DATE_INFO BUILD_INFO = "pyScss v" + VERSION + " (" + REVISION + ")" -- cgit v1.2.1