Skip to content

Commit

Permalink
release 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Apr 19, 2016
1 parent e13d2d2 commit 326816f
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 8 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<a name="0.9.3"></a>
## 0.9.3 (2016-04-19)


* added readonly to docs for type property, closes #235 ([afd7531](https://github.com/liabru/matter-js/commit/afd7531)), closes [#235](https://github.com/liabru/matter-js/issues/235)
* Engine uses provided world; fixes issue #230 ([158c404](https://github.com/liabru/matter-js/commit/158c404)), closes [#230](https://github.com/liabru/matter-js/issues/230)
* fix issue with removed bodies causing collisions ([23a773a](https://github.com/liabru/matter-js/commit/23a773a))
* fix Matter.Engine.create docs to show element param is optional ([e2e7c0b](https://github.com/liabru/matter-js/commit/e2e7c0b))
* handle missing options in Engine.create ([f36fe2c](https://github.com/liabru/matter-js/commit/f36fe2c))
* improved release tasks ([e13d2d2](https://github.com/liabru/matter-js/commit/e13d2d2))
* Merge branch 'master' of github.com:liabru/matter-js ([d373172](https://github.com/liabru/matter-js/commit/d373172))
* Merge pull request #237 from iamjoshua/master ([b724959](https://github.com/liabru/matter-js/commit/b724959)), closes [#230](https://github.com/liabru/matter-js/issues/230)
* set release task to default to patch ([9d396fe](https://github.com/liabru/matter-js/commit/9d396fe))
* updated edge build ([7eb9ac7](https://github.com/liabru/matter-js/commit/7eb9ac7))



<a name="0.9.2"></a>
## 0.9.2 (2016-04-07)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Matter",
"version": "0.9.2",
"version": "0.9.3",
"homepage": "https://github.com/liabru/matter-js",
"authors": [
"Liam Brummitt <liam@brm.io> (http://brm.io/)"
Expand Down
13 changes: 9 additions & 4 deletions build/matter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* matter-js master by @liabru 2016-04-09
* matter-js 0.9.3 by @liabru 2016-04-19
* http://brm.io/matter-js/
* License MIT
*/
Expand Down Expand Up @@ -704,6 +704,7 @@ var Axes = require('../geometry/Axes');
* @property type
* @type string
* @default "body"
* @readOnly
*/

/**
Expand Down Expand Up @@ -1755,6 +1756,7 @@ var Body = require('./Body');
* @property type
* @type string
* @default "composite"
* @readOnly
*/

/**
Expand Down Expand Up @@ -3711,6 +3713,7 @@ var Common = require('../core/Common');
* @property type
* @type string
* @default "constraint"
* @readOnly
*/

/**
Expand Down Expand Up @@ -4029,6 +4032,7 @@ var Bounds = require('../geometry/Bounds');
* @property type
* @type string
* @default "constraint"
* @readOnly
*/

/**
Expand Down Expand Up @@ -4425,15 +4429,16 @@ var Body = require('../body/Body');
* All properties have default values, and many are pre-calculated automatically based on other properties.
* See the properties section below for detailed information on what you can pass via the `options` object.
* @method create
* @param {HTMLElement} element
* @param {HTMLElement} [element]
* @param {object} [options]
* @return {engine} engine
*/
Engine.create = function(element, options) {

// options may be passed as the first (and only) argument
options = Common.isElement(element) ? options : element;
element = Common.isElement(element) ? element : null;

options = options || {};

var defaults = {
positionIterations: 6,
Expand Down Expand Up @@ -4465,7 +4470,7 @@ var Body = require('../body/Body');
engine.render = engine.render.controller.create(engine.render);
}

engine.world = World.create(engine.world);
engine.world = options.world || World.create(engine.world);
engine.pairs = Pairs.create();
engine.broadphase = engine.broadphase.controller.create(engine.broadphase);
engine.metrics = engine.metrics || { extended: false };
Expand Down
4 changes: 2 additions & 2 deletions build/matter.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "matter-js",
"version": "0.9.2",
"version": "0.9.3",
"license": "MIT",
"homepage": "http://brm.io/matter-js/",
"author": "Liam Brummitt <liam@brm.io> (http://brm.io/)",
Expand Down

0 comments on commit 326816f

Please sign in to comment.