summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorGerman M. Bravo <german.mb@deipi.com>2012-01-09 18:16:02 -0600
committerGerman M. Bravo <german.mb@deipi.com>2012-01-09 18:16:02 -0600
commit59218a8d13041267419c5b8966ab688fbedb441d (patch)
tree109fb2ae61ff9cddeda41a9673964031215c2b72 /README.rst
parentfa4d1ea4662da5c68b7b3e98b64c139053387ac7 (diff)
downloadpyscss-59218a8d13041267419c5b8966ab688fbedb441d.tar.gz
Included CHANGELOG in the README
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst37
1 files changed, 34 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 12a6972..f0800d9 100644
--- a/README.rst
+++ b/README.rst
@@ -5,8 +5,6 @@ pyScss, a Scss compiler for Python
About
=====
-.. include:: <DESCRIPTION>
-
pyScss compiles Scss (Sass), a superset of CSS that is more powerful, elegant
and easier to maintain than plain-vanilla CSS. The library acts as a CSS source
code preprocesor which allows you to use variables, nested rules, mixins, and
@@ -271,7 +269,40 @@ If you have any suggestions, bug reports or annoyances please report them to the
issue tracker at http://github.com/Kronuz/pyScss/issues
-.. include:: <CHANGELOG>
+Changelog
+=========
+
+1.1.4 ???
+ + Added ``--debug-info`` command line option
+
+1.1.3 Jan 9, 2012
+ + Support for the new Sass 3.2.0 features (@content and placeholder selectors)
+ + Fixed bug with line numbers throwing an exception.
+
+1.1.2 Jan 3, 2012
+ + Regression bug fixed from 1.1.1
+
+1.1.1 Jan 2, 2012
+ + Added optional C module for an amazing boost in scanning speed!
+ + Added ``headings``, ``stylesheet-url``, ``font-url``, ``font-files``, ``inline-font-files`` and ``sprite-names``.
+
+1.1.0 - Dec 22, 2011
+ + Added min() and max() for lists.
+ + Removed exception raise.
+
+1.0.9 - Dec 22, 2011
+ + Optimizations in the scanner.
+ + Added background-noise() for compass-recipes support.
+ + enumerate() and range() can go backwards. Ex.: range(3, 0) goes from 3 to 0.
+ + Added line numbers and files for errors.
+ + Added support for FireSass for Firebug
+ + nth(n) is round (returns nth mod len item of the list).
+ + --watch added to the command line.
+ + Several bugs fixed.
+
+1.0.8 - May 13, 2011
+ + Changed source color ($src-color) default to black.
+ + Moved the module filename to __init__.py and module renamed back to scss.
Contributing