Version 0.6.0
authorkangax <kangax@gmail.com>
Sun, 4 May 2014 10:55:02 +0000 (12:55 +0200)
committerkangax <kangax@gmail.com>
Sun, 4 May 2014 11:00:47 +0000 (13:00 +0200)
CHANGELOG.md
dist/htmlminifier.js
dist/htmlminifier.min.js
index.html
package.json

index b43bbe5..9679074 100644 (file)
@@ -1,5 +1,11 @@
-## [Current](https://github.com/kangax/html-minifier/compare/v0.5.6...gh-pages)
+## [0.6.0](https://github.com/kangax/html-minifier/compare/v0.5.6...0.6.0)
 
+* Minify meta viewport value [#159](https://github.com/kangax/html-minifier/issues/159)
+* Add support for ignoring markup via <!-- htmlmin:ignore --> [#89](https://github.com/kangax/html-minifier/issues/89)
+* Add support for processScripts [#139](https://github.com/kangax/html-minifier/issues/139)
+* Add support for ignoreCustomComments [#145](https://github.com/kangax/html-minifier/issues/145)
+* Add conservativeCollapse option
+* Fix handling of valueless attributes [#150](https://github.com/kangax/html-minifier/issues/150)
 * Escape closing script tag [#142](https://github.com/kangax/html-minifier/issues/142)
 * Add support for minifying CSS (`minifyCSS`)
 * Add support for minifying JS (`minifyJS`)
 
 ## [0.5.6 / 2014-03-12](https://github.com/kangax/html-minifier/compare/v0.5.5...v0.5.6)
 
-* Fixed issue [#76](https://github.com/kangax/html-minifier/issues/76) - Add an option to keep closing slash in singleton tags
-* Fixed issue [#92](https://github.com/kangax/html-minifier/issues/92) - Make `</source>` tag optional
-* Fixed issue [#95](https://github.com/kangax/html-minifier/issues/95) - Add `td` and `th` to optional tags list
-* Fixed issue [#106](https://github.com/kangax/html-minifier/issues/106) - Add `caseSensitive` option
-* Fixed issue [#131](https://github.com/kangax/html-minifier/issues/131) - Add options quick reference in README.md
-* Fixed quotes in attributes
+* Add an option to keep closing slash in singleton tags [#76](https://github.com/kangax/html-minifier/issues/76)
+* Make `</source>` tag optional [#92](https://github.com/kangax/html-minifier/issues/92)
+* Add `td` and `th` to optional tags list [#95](https://github.com/kangax/html-minifier/issues/95)
+* Add `caseSensitive` option [#106](https://github.com/kangax/html-minifier/issues/106)
+* Add options quick reference in README.md [#131](https://github.com/kangax/html-minifier/issues/131)
+* Fix quotes in attributes
 * Ignore unneeded files from being included in the npm package
 * Switch to Grunt for development
+
+## [0.5.5 / 2014-01-03](https://github.com/kangax/html-minifier/compare/v0.5.4...v0.5.5)
+
+* Add missing inline tags for collapsing whitespace
+* Preserve quotes if attribute ends with a trailing slash
+* Add space around time tag
+* Newlines are collapsed to one space
+
+## [0.5.4 / 2013-09-04](https://github.com/kangax/html-minifier/compare/v0.5.3...v0.5.4)
+
+* Add support for ignoring <%...%> and <?...?>
+* Fix space after textarea
+* Add support for ignored comments (<!--!)
+* Add more tags to collapseWhitespaceSmart whitelist
index 61090a6..589c3e5 100644 (file)
@@ -1,5 +1,5 @@
 /*!
- * HTMLMinifier v0.5.6 (http://kangax.github.io/html-minifier/)
+ * HTMLMinifier v0.6.0 (http://kangax.github.io/html-minifier/)
  * Copyright 2010-2014 Juriy "kangax" Zaytsev
  * Licensed under MIT (https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE)
  */
index 191554b..d9cd122 100644 (file)
@@ -1,5 +1,5 @@
 /*!
- * HTMLMinifier v0.5.6 (http://kangax.github.io/html-minifier/)
+ * HTMLMinifier v0.6.0 (http://kangax.github.io/html-minifier/)
  * Copyright 2010-2014 Juriy "kangax" Zaytsev
  * Licensed under MIT (https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE)
  */
index 65c4ea4..9cd42dc 100644 (file)
@@ -10,7 +10,7 @@
       <div id="outer-wrapper">
         <script id='fbyg2uy'>(function(i){var f,s=document.getElementById(i);f=document.createElement('iframe');f.src='//api.flattr.com/button/view/?uid=kangax&button=compact&url='+encodeURIComponent(document.URL);f.title='Flattr';f.height=20;f.width=110;f.style.borderWidth=0;s.parentNode.insertBefore(f,s);})('fbyg2uy');</script>
         <div id="wrapper">
-          <h1>HTML Minifier <span style="font-size: 0.6em">(v0.5.6)</span></h1>
+          <h1>HTML Minifier <span style="font-size: 0.6em">(v0.6.0)</span></h1>
           <p id="warning">
             Minifier is <strong>in beta</strong> and could be rough around the edges.
             However, there's <a href="tests">an extensive test suite</a>.
index 9c2d914..26cb53c 100644 (file)
@@ -1,7 +1,7 @@
 {
   "name": "html-minifier",
   "description": "HTML minifier with lint-like capabilities.",
-  "version": "0.5.6",
+  "version": "0.6.0",
   "keywords": [
     "html",
     "minifier",