summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerman M. Bravo <german.mb@deipi.com>2013-02-15 15:03:33 -0600
committerGerman M. Bravo <german.mb@deipi.com>2013-02-15 15:03:33 -0600
commitd500fd7889657d97ed847dfc31c262f0bb2a4e6a (patch)
tree750ee6ec90ebc61c61ef8b29d49d7a031c12b2ea
parentb4faef8c06ecd2dce23000eeaef36e48f5d4d8dd (diff)
downloadpyscss-d500fd7889657d97ed847dfc31c262f0bb2a4e6a.tar.gz
Version 1.1.5 releasedv1.1.5
-rw-r--r--CHANGELOG5
-rw-r--r--README.rst8
-rw-r--r--scss/__init__.py4
-rw-r--r--scss/scss_meta.py6
4 files changed, 15 insertions, 8 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 54d2850..1958571 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,10 +1,11 @@
Changelog
=========
-1.1.5 ???
+1.1.5 Feb 15, 2013
+ + ``debug_info`` now properly produces rules that can be used by FireSass and Google Chrome SASS Source Maps.
+ Improved memory usage for large sets of files to be used as sprites.
+ Warns about IE 4095 maximum number of selectors.
- + debug_info prints info as comments if specified as ``comments``.
+ + ``debug_info`` prints info as comments if specified as ``comments``.
+ Better handling of undefined variables.
+ Added CSS filter functions and ``skewX`` ``skewY``.
+ Command line tool and entry point fixed.
diff --git a/README.rst b/README.rst
index 29d732f..26bbc24 100644
--- a/README.rst
+++ b/README.rst
@@ -353,7 +353,13 @@ issue tracker at http://github.com/Kronuz/pyScss/issues
Changelog
=========
-1.1.5 ???
+1.1.5 Feb 15, 2013
+ + ``debug_info`` now properly produces rules that can be used by FireSass and Google Chrome SASS Source Maps.
+ + Improved memory usage for large sets of files to be used as sprites.
+ + Warns about IE 4095 maximum number of selectors.
+ + ``debug_info`` prints info as comments if specified as ``comments``.
+ + Better handling of undefined variables.
+ + Added CSS filter functions and ``skewX`` ``skewY``.
+ Command line tool and entry point fixed.
+ Fix cache buster URLs when paths already include queries or fragments.
+ Hashable Values.
diff --git a/scss/__init__.py b/scss/__init__.py
index 87ee410..247ce36 100644
--- a/scss/__init__.py
+++ b/scss/__init__.py
@@ -4,9 +4,9 @@
pyScss, a Scss compiler for Python
@author German M. Bravo (Kronuz) <german.mb@gmail.com>
-@version 1.1.4
+@version 1.1.5
@see https://github.com/Kronuz/pyScss
-@copyright (c) 2012 German M. Bravo (Kronuz)
+@copyright (c) 2012-2013 German M. Bravo (Kronuz)
@license MIT License
http://www.opensource.org/licenses/mit-license.php
diff --git a/scss/scss_meta.py b/scss/scss_meta.py
index 00170ff..a9d7193 100644
--- a/scss/scss_meta.py
+++ b/scss/scss_meta.py
@@ -4,9 +4,9 @@
pyScss, a Scss compiler for Python
@author German M. Bravo (Kronuz) <german.mb@gmail.com>
-@version 1.1.4
+@version 1.1.5
@see https://github.com/Kronuz/pyScss
-@copyright (c) 2012 German M. Bravo (Kronuz)
+@copyright (c) 2012-2013 German M. Bravo (Kronuz)
@license MIT License
http://www.opensource.org/licenses/mit-license.php
@@ -45,7 +45,7 @@ xCSS:
"""
VERSION_INFO = (1, 1, 5)
-DATE_INFO = (2012, 8, 8) # YEAR, MONTH, DAY
+DATE_INFO = (2013, 2, 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 + ")"