diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | component.json | 2 | ||||
-rw-r--r-- | dist/svg.js | 2 | ||||
-rw-r--r-- | package.json | 10 |
4 files changed, 10 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9df5d71..41beb25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - added specs for `SVG.FX` -> __TODO!__ # 2.3.6 +- fixed leading and trailing in SVG.PointArray would return NaN for some points (695f26a) - make SVG.FX.loop modify the last situation instead of the current one (#532) - fixed test of `SVG.FX.afterAll` (#534) - fixed `SVG.FX.speed()` (#536) diff --git a/component.json b/component.json index 29847b7..c3f688c 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.3.5", + "version": "2.3.6", "keywords": ["svg"], "author": "Wout Fierens <wout@woutfierens.com>", "main": "dist/svg.js", diff --git a/dist/svg.js b/dist/svg.js index 1fcda5e..f3d3bc6 100644 --- a/dist/svg.js +++ b/dist/svg.js @@ -6,7 +6,7 @@ * @copyright Wout Fierens <wout@woutfierens.com> * @license MIT * -* BUILT: Thu Oct 20 2016 17:35:41 GMT-0200 (WGST) +* BUILT: Fri Oct 21 2016 13:38:14 GMT-0200 (WGST) */; (function(root, factory) { if (typeof define === 'function' && define.amd) { diff --git a/package.json b/package.json index 87c598f..2aba0e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svg.js", - "version": "2.3.5", + "version": "2.3.6", "description": "A lightweight library for manipulating and animating SVG.", "url": "http://svgjs.com", "homepage": "http://www.svgjs.com", @@ -33,6 +33,11 @@ { "name": "Ulrich-Matthias Schäfer", "email": "ulima.ums@googlemail.com" + }, + { + "name": "Jon Ege Ronnenberg", + "email": "jon.ronnenberg+svgjs@gmail.com", + "url": "https://keybase.io/dotnetcarpenter" } ], "licenses": [ @@ -50,8 +55,7 @@ "typings": "./svg.js.d.ts", "scripts": { "build": "gulp", - "test": "karma start .config/karma.conf.js --single-run", - "version": "npm run build && git add -A dist" + "test": "karma start .config/karma.conf.js --single-run" }, "devDependencies": { "del": "^2.2.0", |