Version 0.8.0.
authorGoalSmashers <jakub@goalsmashers.com>
Sun, 21 Oct 2012 10:41:23 +0000 (11:41 +0100)
committerGoalSmashers <jakub@goalsmashers.com>
Sun, 21 Oct 2012 10:41:23 +0000 (11:41 +0100)
History.md
README.md
package.json

index 81f845c..5349ca3 100644 (file)
@@ -1,3 +1,12 @@
+0.8.0 / 2012-10-21
+==================
+
+ * Added removing url parentheses if possible.
+ * Rewrote breaks processing.
+ * Added (keepBreaks/-b) option to keep breaks in minimized file.
+ * Reformatted lib/clean.js so it's eaasier to follow the rules.
+ * Minimized test data is now kept with breaks so it's easier to compare the changes.
+
 0.7.0 / 2012-10-14
 ==================
 
index f206ec4..28524d9 100644 (file)
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Clean-css is a node.js library for minifying CSS files. It does the same job as
 
 ### How to use clean-css? ###
 
-You can minify one file **public.css** into **public-min.css** via:
+To minify a **public.css** file into **public-min.css** do:
 
     cleancss -o public-min.css public.css
 
@@ -48,9 +48,9 @@ Or even gzip it at once:
 
 ### How to run clean-css tests? ###
 
-You need vows testing framework (npm install vows) then simply run:
+First clone the source, then run:
 
-    make test
+    npm test
 
 on *nix systems. If you are under Windows then run:
 
@@ -61,6 +61,7 @@ on *nix systems. If you are under Windows then run:
 * Vincent Voyer (@vvo) for a patch with better empty element regex and for inspiring us to do many performance improvements in 0.4 release.
 * Isaac (@facelessuser) for pointing out a flaw in clean-css' stateless mode.
 * Jan Michael Alonzo (@jmalonzo) for a patch removing node's old 'sys' package.
+* @XhmikosR for suggesting new features: option to remove special comments and strip out url's parentheses.
 
 ## License ##
 
index c6f8026..ecdb385 100644 (file)
@@ -8,7 +8,7 @@
     "type" : "git",
     "url" : "http://github.com/GoalSmashers/clean-css.git"
   },
-  "version": "0.7.0",
+  "version": "0.8.0",
   "main": "index.js",
   "bin": {
     "cleancss": "./bin/cleancss"