Skip to content

Commit 06655ff

Browse files
committed
release 0.14.1
1 parent ec38eeb commit 06655ff

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="0.14.1"></a>
2+
## 0.14.1 (2018-01-10)
3+
4+
* fix Common.isElement on node, closes #535 ([ec38eeb](https://github.com/liabru/matter-js/commit/ec38eeb)), closes [#535](https://github.com/liabru/matter-js/issues/535)
5+
6+
7+
18
<a name="0.14.0"></a>
29
# 0.14.0 (2017-11-30)
310

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Matter",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"homepage": "https://github.com/liabru/matter-js",
55
"authors": [
66
"Liam Brummitt <liam@brm.io> (http://brm.io/)"

build/matter.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* matter-js 0.14.0 by @liabru 2017-11-30
2+
* matter-js 0.14.1 by @liabru 2018-01-10
33
* http://brm.io/matter-js/
44
* License MIT
55
*/
@@ -4446,7 +4446,7 @@ module.exports = Common;
44464446
return obj instanceof HTMLElement;
44474447
}
44484448

4449-
return !!(obj.nodeType && obj.nodeName);
4449+
return !!(obj && obj.nodeType && obj.nodeName);
44504450
};
44514451

44524452
/**
@@ -5444,7 +5444,7 @@ var Common = _dereq_('./Common');
54445444
* @readOnly
54455445
* @type {String}
54465446
*/
5447-
Matter.version = '0.14.0';
5447+
Matter.version = '0.14.1';
54485448

54495449
/**
54505450
* A list of plugin dependencies to be installed. These are normally set and installed through `Matter.use`.

build/matter.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matter-js",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"license": "MIT",
55
"homepage": "http://brm.io/matter-js/",
66
"author": "Liam Brummitt <liam@brm.io> (http://brm.io/)",

0 commit comments

Comments
 (0)