summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG4
-rw-r--r--pyScss.egg-info/PKG-INFO4
-rw-r--r--scss/scss_meta.py6
3 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 808827d..d0e994b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,10 @@
Changelog
=========
+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.
diff --git a/pyScss.egg-info/PKG-INFO b/pyScss.egg-info/PKG-INFO
index f6010a5..1d94ac9 100644
--- a/pyScss.egg-info/PKG-INFO
+++ b/pyScss.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.0
Name: pyScss
-Version: 1.0.9
+Version: 1.1.0
Summary: pyScss, a Scss compiler for Python
Home-page: http://github.com/Kronuz/pyScss
Author: German M. Bravo (Kronuz)
Author-email: german.mb@gmail.com
License: MIT
-Download-URL: http://github.com/Kronuz/pyScss/tarball/v1.0.9
+Download-URL: http://github.com/Kronuz/pyScss/tarball/v1.1.0
Description: pyScss, a Scss compiler for Python
==================================
:Author:
diff --git a/scss/scss_meta.py b/scss/scss_meta.py
index 331798e..cbf1a7b 100644
--- a/scss/scss_meta.py
+++ b/scss/scss_meta.py
@@ -4,7 +4,7 @@
pyScss, a Scss compiler for Python
@author German M. Bravo (Kronuz) <german.mb@gmail.com>
-@version 1.0
+@version 1.1.0
@see https://github.com/Kronuz/pyScss
@copyright (c) 2011 German M. Bravo (Kronuz)
@license MIT License
@@ -44,7 +44,7 @@ xCSS:
"""
-VERSION_INFO = (1, 0, 9)
+VERSION_INFO = (1, 1, 0)
DATE_INFO = (2011, 12, 22) # YEAR, MONTH, DAY
VERSION = '.'.join(str(i) for i in VERSION_INFO)
REVISION = '%04d%02d%02d' % DATE_INFO
@@ -52,7 +52,7 @@ BUILD_INFO = "pyScss v" + VERSION + " (" + REVISION + ")"
AUTHOR = "German M. Bravo (Kronuz)"
AUTHOR_EMAIL = 'german.mb@gmail.com'
URL = 'http://github.com/Kronuz/pyScss'
-DOWNLOAD_URL = 'http://github.com/Kronuz/pyScss/tarball/v1.0.9'
+DOWNLOAD_URL = 'http://github.com/Kronuz/pyScss/tarball/v1.1.0'
LICENSE = "MIT"
PROJECT = "pyScss"