Skip to content

Commit

Permalink
chore(all): prepare release 0.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 6, 2015
1 parent 8c7cf24 commit 69bbec3
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 32 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.8.5",
"version": "0.8.6",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down
10 changes: 3 additions & 7 deletions dist/amd/compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,7 @@ define(["exports", "aurelia-dependency-injection", "aurelia-templating"], functi
bind: {
value: function bind(executionContext) {
this.executionContext = executionContext;
processInstruction(this, {
view: this.view,
viewModel: this.viewModel,
model: this.model
});
processInstruction(this, { view: this.view, viewModel: this.viewModel, model: this.model });
},
writable: true,
configurable: true
Expand All @@ -55,14 +51,14 @@ define(["exports", "aurelia-dependency-injection", "aurelia-templating"], functi
},
viewChanged: {
value: function viewChanged(newValue, oldValue) {
processInstruction(this, { view: newValue });
processInstruction(this, { view: newValue, viewModel: this.viewModel, model: this.model });
},
writable: true,
configurable: true
},
viewModelChanged: {
value: function viewModelChanged(newValue, oldValue) {
processInstruction(this, { viewModel: newValue });
processInstruction(this, { viewModel: newValue, view: this.view, model: this.model });
},
writable: true,
configurable: true
Expand Down
10 changes: 3 additions & 7 deletions dist/commonjs/compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@ var Compose = exports.Compose = (function () {
bind: {
value: function bind(executionContext) {
this.executionContext = executionContext;
processInstruction(this, {
view: this.view,
viewModel: this.viewModel,
model: this.model
});
processInstruction(this, { view: this.view, viewModel: this.viewModel, model: this.model });
},
writable: true,
configurable: true
Expand All @@ -56,14 +52,14 @@ var Compose = exports.Compose = (function () {
},
viewChanged: {
value: function viewChanged(newValue, oldValue) {
processInstruction(this, { view: newValue });
processInstruction(this, { view: newValue, viewModel: this.viewModel, model: this.model });
},
writable: true,
configurable: true
},
viewModelChanged: {
value: function viewModelChanged(newValue, oldValue) {
processInstruction(this, { viewModel: newValue });
processInstruction(this, { viewModel: newValue, view: this.view, model: this.model });
},
writable: true,
configurable: true
Expand Down
14 changes: 5 additions & 9 deletions dist/es6/compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,13 @@ export class Compose {
constructor(container, compositionEngine, viewSlot, viewResources){
this.container = container;
this.compositionEngine = compositionEngine;
this.viewSlot = viewSlot;
this.viewSlot = viewSlot;
this.viewResources = viewResources;
}

bind(executionContext){
this.executionContext = executionContext;
processInstruction(this, {
view:this.view,
viewModel:this.viewModel,
model:this.model
});
processInstruction(this, { view:this.view, viewModel:this.viewModel, model:this.model });
}

modelChanged(newValue, oldValue){
Expand All @@ -35,11 +31,11 @@ export class Compose {
}

viewChanged(newValue, oldValue){
processInstruction(this, { view:newValue });
processInstruction(this, { view:newValue, viewModel:this.viewModel, model:this.model });
}

viewModelChanged(newValue, oldValue){
processInstruction(this, { viewModel:newValue });
processInstruction(this, { viewModel:newValue, view:this.view, model:this.model });
}
}

Expand All @@ -53,4 +49,4 @@ function processInstruction(composer, instruction){
})).then(next => {
composer.current = next;
});
}
}
10 changes: 3 additions & 7 deletions dist/system/compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,7 @@ System.register(["aurelia-dependency-injection", "aurelia-templating"], function
bind: {
value: function bind(executionContext) {
this.executionContext = executionContext;
processInstruction(this, {
view: this.view,
viewModel: this.viewModel,
model: this.model
});
processInstruction(this, { view: this.view, viewModel: this.viewModel, model: this.model });
},
writable: true,
configurable: true
Expand All @@ -74,14 +70,14 @@ System.register(["aurelia-dependency-injection", "aurelia-templating"], function
},
viewChanged: {
value: function viewChanged(newValue, oldValue) {
processInstruction(this, { view: newValue });
processInstruction(this, { view: newValue, viewModel: this.viewModel, model: this.model });
},
writable: true,
configurable: true
},
viewModelChanged: {
value: function viewModelChanged(newValue, oldValue) {
processInstruction(this, { viewModel: newValue });
processInstruction(this, { viewModel: newValue, view: this.view, model: this.model });
},
writable: true,
configurable: 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.8.6 (2015-02-06)


#### Bug Fixes

* **compose:** all properties not responding to changes ([8c7cf24c](http://github.com/aurelia/templating-resources/commit/8c7cf24c94d8b35f8e6c2847ed427f840adff225), closes [#10](http://github.com/aurelia/templating-resources/issues/10))


### 0.8.5 (2015-02-03)


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.8.5",
"version": "0.8.6",
"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 69bbec3

Please sign in to comment.