Version 0.3.0.
authorJakub Pawlowicz <jakub@goalsmashers.com>
Tue, 29 Nov 2011 13:06:33 +0000 (14:06 +0100)
committerJakub Pawlowicz <jakub@goalsmashers.com>
Tue, 29 Nov 2011 13:06:33 +0000 (14:06 +0100)
History.md
README.md
package.json

index 027c5ab..af7ae8b 100644 (file)
@@ -1,3 +1,9 @@
+0.3.0 / 2011-11-29
+==================
+  
+  * Clean-css requires node 0.4.0+ to run.
+  * Removed node's 0.2.x 'sys' package dependency (thanks to @jmalonzo for a patch).
+
 0.2.6 / 2011-11-27
 ==================
 
index ff9fd78..4175aa9 100644 (file)
--- a/README.md
+++ b/README.md
@@ -4,11 +4,14 @@ Clean-css is a node.js library for minifying CSS files. It does the same job as
 
 ## Usage ##
 
+### What are the requirements? ###
+
+    node 0.4.0+
+
 ### How to install clean-css? ###
 
     npm install clean-css
 
-
 ### How to use clean-css? ###
 
 You can minify one file **public.css** into **public-min.css** via:
@@ -27,7 +30,7 @@ Or even gzip it at once:
 
     cat one.css two.css three.css | cleancss | gzip -9 -c > merged-minified-and-gzipped.css.gz
 
-### How to use clean-css programatically ###
+### How to use clean-css programatically? ###
 
     var cleanCSS = require('clean-css');
     
index 61dbf09..3c65c6d 100644 (file)
@@ -8,12 +8,15 @@
     "type" : "git",
     "url" : "http://github.com/GoalSmashers/clean-css.git"
   },
-  "version": "0.2.6",
+  "version": "0.3.0",
   "main": "index.js",
   "bin": {
     "cleancss": "./bin/cleancss"
   },
   "dependencies": {
     "optimist": "0.1.x"
+  },
+  "engines": {
+    "node": ">=0.4.0"
   }
-}
\ No newline at end of file
+}