diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f019adf8..fbea4cff4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### [ [>](https://github.com/svg/svgo/tree/v0.6.5) ] 0.6.5 / 25.04.2016 +* Extra content inserted by editors are now being removed within `` as well thus fixing bug “Namespace prefix … is not defined“ after applying SVGO. +* Doctype with entities declartion is now also being removed since svgo correctly parses them starting from the version [0.6.2](https://github.com/svg/svgo/tree/v0.6.2). +* Corrected `moveGroupAttrsToElems` not to move attributes to `g` content if it's referenced (has an `id`). +* `collapseGroups` now don't collapse a group if it has an animated attribute (SMIL). + ### [ [>](https://github.com/svg/svgo/tree/v0.6.4) ] 0.6.4 / 05.04.2016 * Fixed bug in “[convertStyleToAttrs](https://github.com/svg/svgo/blob/master/plugins/convertStyleToAttrs.js)” plugin with converting styling properties to non-existent attributes (which are normally removed later by `removeUnknownsAndDefaults`). * Added `--indent` option to style pretty-printed SVG. (e.g. `--indent 2`) (by @scurker). diff --git a/package.json b/package.json index 3749133ca..6420c1eec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svgo", - "version": "0.6.4", + "version": "0.6.5", "description": "Nodejs-based tool for optimizing SVG vector graphics files", "keywords": [ "svgo", @@ -49,16 +49,16 @@ "dependencies": { "sax": "~1.2.1", "coa": "~1.0.1", - "js-yaml": "~3.5.5", + "js-yaml": "~3.6.0", "colors": "~1.1.2", "whet.extend": "~0.9.9", "mkdirp": "~0.5.1", - "csso": "~1.8.1" + "csso": "~2.0.0" }, "devDependencies": { "mocha": "~2.4.5", - "should": "8.3.0", - "istanbul": "~0.4.2", + "should": "8.3.1", + "istanbul": "~0.4.3", "mocha-istanbul": "~0.2.0", "coveralls": "~2.11.9" },