diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..82409e1 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,7 @@ +0.1.6 +===== +* Always quote attributes that end in "/". (Thanks nvie) +* Use StringIO to speed up string building. (Thanks nvie) +* Typo fixes in documentation. (Thanks aabrahamowicz and Namibnat) +* Keep Microsoft's conditional comments. (Thanks mreinhardt) +* Properly handle empty comments. (Thanks Epsirom) diff --git a/htmlmin/__init__.py b/htmlmin/__init__.py index d9db771..57571d7 100644 --- a/htmlmin/__init__.py +++ b/htmlmin/__init__.py @@ -27,4 +27,4 @@ from .main import minify, Minifier -__version__ = '0.1.5' +__version__ = '0.1.6'