Skip to content

Commit

Permalink
0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
GreLI committed Apr 5, 2016
1 parent 9f545d2 commit b35d828
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### [ [>](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).
* Added `currentColor` param to `convertColors` plugin for converting values like `fill` and `stroke` to `currentColor` (by @scurker).
* Bumped CSSO to the current version and used [its new shiny API](https://github.com/css/csso#api) (thanks to @lahmatiy).

### [ [>](https://github.com/svg/svgo/tree/v0.6.3) ] 0.6.3 / 20.03.2016
* Smart rounding (introduced in 0.4.5) now applies only when rounding is needed, thus making subsequent passes more stable.
* Fixed regression in converting curves to arcs.
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svgo",
"version": "0.6.3",
"version": "0.6.4",
"description": "Nodejs-based tool for optimizing SVG vector graphics files",
"keywords": [
"svgo",
Expand Down Expand Up @@ -47,20 +47,20 @@
"test": "make test"
},
"dependencies": {
"sax": "~1.1.6",
"sax": "~1.2.1",
"coa": "~1.0.1",
"js-yaml": "~3.5.3",
"js-yaml": "~3.5.5",
"colors": "~1.1.2",
"whet.extend": "~0.9.9",
"mkdirp": "~0.5.1",
"csso": "~1.8.0"
"csso": "~1.8.1"
},
"devDependencies": {
"mocha": "~2.4.5",
"should": "8.2.2",
"should": "8.3.0",
"istanbul": "~0.4.2",
"mocha-istanbul": "~0.2.0",
"coveralls": "~2.11.8"
"coveralls": "~2.11.9"
},
"engines": {
"node": ">=0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion plugins/removeStyleElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ exports.type = 'perItem';

exports.active = false;

exports.description = 'removes <style>';
exports.description = 'removes <style> element (disabled by default)';

/**
* Remove <style>.
Expand Down

0 comments on commit b35d828

Please sign in to comment.