summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2013-10-08 13:47:55 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2013-10-08 13:50:10 -0700
commit2c10593a7bcec17b8d3dcca9ba40e24868f8ca5c (patch)
tree4d72d704c1389c45cdb877f66cdb772575167e98
parent3d0bf012b4867fa19ace15ba26359ba5cff07a28 (diff)
downloadpyscss-2c10593a7bcec17b8d3dcca9ba40e24868f8ca5c.tar.gz
Bump to 1.2.0!v1.2.0
-rw-r--r--docs/back-matter.rst4
-rw-r--r--docs/conf.py2
-rw-r--r--scss/scss_meta.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/back-matter.rst b/docs/back-matter.rst
index 7d9d370..9cc88af 100644
--- a/docs/back-matter.rst
+++ b/docs/back-matter.rst
@@ -68,8 +68,8 @@ working hours. Yelp does not claim copyright.
Changelog
---------
-1.2.0 (not yet released)
-^^^^^^^^^^^^^^^^^^^^^^^^
+1.2.0 (Oct 8, 2013)
+^^^^^^^^^^^^^^^^^^^
This is a significant release that greatly increases compatibility with the
reference compiler; in particular, the Sass port of Bootstrap now compiles.
diff --git a/docs/conf.py b/docs/conf.py
index 237487e..1ca7b61 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -50,7 +50,7 @@ copyright = u'2013, German M. Bravo (Kronuz)'
# The short X.Y version.
version = '1.2'
# The full version, including alpha/beta/rc tags.
-release = '1.2pre'
+release = '1.2.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/scss/scss_meta.py b/scss/scss_meta.py
index 44e08e7..9f3c71f 100644
--- a/scss/scss_meta.py
+++ b/scss/scss_meta.py
@@ -44,8 +44,8 @@ xCSS:
"""
-VERSION_INFO = (1, 2, '0pre')
-DATE_INFO = (2013, 2, 15) # YEAR, MONTH, DAY
+VERSION_INFO = (1, 2, 0)
+DATE_INFO = (2013, 10, 8) # YEAR, MONTH, DAY
VERSION = '.'.join(str(i) for i in VERSION_INFO)
REVISION = '%04d%02d%02d' % DATE_INFO
BUILD_INFO = "pyScss v" + VERSION + " (" + REVISION + ")"