Skip to content

Commit

Permalink
chore(*): prepare release 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Dec 22, 2014
1 parent 8cec29a commit 8d415c3
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 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-router",
"version": "0.5.0",
"version": "0.5.1",
"description": "An implementation of the RouteLoader interface for use with the router module. Also contains a custom element that allows the templating engine to display the current route.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/router-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ define(["exports", "aurelia-dependency-injection", "aurelia-templating", "aureli
throw new Error("The view must be a string or an instance of ViewStrategy.");
}

CustomElement.anonymous(this.container, viewModel, viewStrategy).then(function (behaviorType) {
return CustomElement.anonymous(this.container, viewModel, viewStrategy).then(function (behaviorType) {
return behaviorType.create(childContainer, { executionContext: viewModel, suppressBind: true });
});
};
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/router-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ var RouterView = (function () {
throw new Error("The view must be a string or an instance of ViewStrategy.");
}

CustomElement.anonymous(this.container, viewModel, viewStrategy).then(function (behaviorType) {
return CustomElement.anonymous(this.container, viewModel, viewStrategy).then(function (behaviorType) {
return behaviorType.create(childContainer, { executionContext: viewModel, suppressBind: true });
});
};
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/router-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class RouterView {
throw new Error('The view must be a string or an instance of ViewStrategy.');
}

CustomElement.anonymous(this.container, viewModel, viewStrategy).then(behaviorType => {
return CustomElement.anonymous(this.container, viewModel, viewStrategy).then(behaviorType => {
return behaviorType.create(childContainer, {executionContext:viewModel, suppressBind:true});
});
}
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.5.1 (2014-12-22)


#### Bug Fixes

* **router-view:** ensure getComponent returns promise ([8cec29a1](http://github.com/aurelia/templating-router/commit/8cec29a17b5b896cae8aa93842216437ff88f6b0))


## 0.5.0 (2014-12-22)


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-router",
"version": "0.5.0",
"version": "0.5.1",
"description": "An implementation of the RouteLoader interface for use with the router module. Also contains a custom element that allows the templating engine to display the current route.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 8d415c3

Please sign in to comment.