Skip to content

Commit

Permalink
chore(all): prepare release 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Mar 27, 2015
1 parent 14d2653 commit aca60ce
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-resources",
"version": "0.9.1",
"version": "0.9.2",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ define(["exports", "aurelia-dependency-injection", "aurelia-templating"], functi
currentBehavior: composer.currentBehavior
})).then(function (next) {
composer.currentBehavior = next;
composer.currentViewModel = next.executionContext;
composer.currentViewModel = next ? next.executionContext : null;
});
}
Object.defineProperty(exports, "__esModule", {
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function processInstruction(composer, instruction) {
currentBehavior: composer.currentBehavior
})).then(function (next) {
composer.currentBehavior = next;
composer.currentViewModel = next.executionContext;
composer.currentViewModel = next ? next.executionContext : null;
});
}
Object.defineProperty(exports, "__esModule", {
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ function processInstruction(composer, instruction){
currentBehavior:composer.currentBehavior
})).then(next => {
composer.currentBehavior = next;
composer.currentViewModel = next.executionContext;
composer.currentViewModel = next ? next.executionContext : null;
});
}
2 changes: 1 addition & 1 deletion dist/system/compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ System.register(["aurelia-dependency-injection", "aurelia-templating"], function
currentBehavior: composer.currentBehavior
})).then(function (next) {
composer.currentBehavior = next;
composer.currentViewModel = next.executionContext;
composer.currentViewModel = next ? next.executionContext : null;
});
}
return {
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.9.2 (2015-03-27)


#### Bug Fixes

* **compose:** null/undefined components should not cause error ([14d26539](http://github.com/aurelia/templating-resources/commit/14d2653986a119ac6e27c792b11c2d75bf811a0f), closes [#31](http://github.com/aurelia/templating-resources/issues/31))


### 0.9.1 (2015-03-25)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-resources",
"version": "0.9.1",
"version": "0.9.2",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit aca60ce

Please sign in to comment.