diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | bower.json | 2 | ||||
-rw-r--r-- | component.json | 2 | ||||
-rw-r--r-- | package.json | 2 |
5 files changed, 9 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index aa448c1..dc8655a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,8 +14,11 @@ # 2.1.0 -- added transform to pattern and gradients -- fixed clone of textnodes +- added transform to pattern and gradients (#383) +- fixed clone of textnodes (#369) +- fixed transformlists in IE (#372) +- fixed typo that leads to broken gradients (#370) +- fixed animate radius for circles (#367) # 2.0.2 (22/06/2015) @@ -3623,7 +3623,7 @@ Svg.js uses the `SVG.invent()` function to create all internal elements, so have ### SVG.extend() -SVG.js has a modular structure. It is very easy to add you own methods at different levels. Let's say we want to add a method to all shape types then we would add our method to SVG.Shape: +SVG.js has a modular structure. It is very easy to add your own methods at different levels. Let's say we want to add a method to all shape types then we would add our method to SVG.Shape: ```javascript SVG.extend(SVG.Shape, { @@ -1,6 +1,6 @@ { "name": "svg.js", - "version":"2.0.5", + "version":"2.1.0", "homepage": "http://svgjs.com/", "authors": [ "Wout Fierens <wout@impinc.co.uk>" diff --git a/component.json b/component.json index 25c22e1..d8e53e8 100644 --- a/component.json +++ b/component.json @@ -2,7 +2,7 @@ "name": "svg.js", "repo": "wout/svg.js", "description": "A lightweight library for manipulating and animating SVG", - "version": "2.0.5", + "version": "2.1.0", "keywords": ["svg"], "author": "Wout Fierens <wout@impinc.co.uk>", "main": "dist/svg.js", diff --git a/package.json b/package.json index cbfc79a..b568bdb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svg.js", - "version": "2.0.5", + "version": "2.1.0", "description": "A lightweight library for manipulating and animating SVG.", "url": "http://svgjs.com", "homepage": "http://www.svgjs.com", |