diff --git a/README.md b/README.md index 702cf5a..c812a63 100644 --- a/README.md +++ b/README.md @@ -189,6 +189,12 @@ please refer to the [svg-sprite manual](https://github.com/jkphl/svg-sprite). ## Release history +#### v1.0.13 Maintenance (2015-01-28) +* Compatible with [svg-sprite 1.0.13](https://github.com/jkphl/svg-sprite/tree/v1.0.13) +* Fixed windows path separator bug ([#6](https://github.com/jkphl/gulp-svg-sprite/issues/6)) +* Made dimension attributes (width & height) optional ([svg-sprite #45](https://github.com/jkphl/svg-sprite/issues/45)) +* Added cache busting option for non-CSS sprites ([svg-sprite #48](https://github.com/jkphl/svg-sprite/issues/48)) + #### v1.0.12 Maintenance (2015-01-27) * Compatible with [svg-sprite 1.0.12](https://github.com/jkphl/svg-sprite/tree/v1.0.12) * Added dimension CSS output for non-CSS sprites ([#45](https://github.com/jkphl/svg-sprite/issues/45)) diff --git a/package.json b/package.json index 751fdec..104d565 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gulp-svg-sprite", "description": "SVG sprites & stacks galore — Gulp plugin wrapping around svg-sprite that reads in a bunch of SVG files, optimizes them and creates SVG sprites and CSS resources in various flavours", - "version": "1.0.12", + "version": "1.0.13", "homepage": "https://github.com/jkphl/gulp-svg-sprite", "author": { "name": "Joschi Kuphal", @@ -30,7 +30,7 @@ "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage" }, "dependencies": { - "svg-sprite": "^1.0.12", + "svg-sprite": "^1.0.13", "through2": "^0.6.3", "gulp-util": "^3.0.1" },