Skip to content

Commit

Permalink
chore(all): prepare release 0.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Oct 15, 2015
1 parent 45096d0 commit 729c6e8
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 12 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-binding",
"version": "0.16.0",
"version": "0.16.1",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand Down
6 changes: 4 additions & 2 deletions dist/amd/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,10 @@ define(['exports', 'aurelia-logging', 'aurelia-binding', 'aurelia-templating'],
};

InterpolationBinding.prototype.call = function call() {
this._version++;
this.interpolate(this.mode === _aureliaBinding.bindingMode.oneWay, false);
if (this.source !== undefined) {
this._version++;
this.interpolate(this.mode === _aureliaBinding.bindingMode.oneWay, false);
}
};

InterpolationBinding.prototype.interpolate = function interpolate(connect, initial) {
Expand Down
6 changes: 4 additions & 2 deletions dist/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,8 +445,10 @@ class InterpolationBinding {
}

call() {
this._version++;
this.interpolate(this.mode === bindingMode.oneWay, false);
if (this.source !== undefined) {
this._version++;
this.interpolate(this.mode === bindingMode.oneWay, false);
}
}

interpolate(connect, initial) {
Expand Down
6 changes: 4 additions & 2 deletions dist/commonjs/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,10 @@ var InterpolationBinding = (function () {
};

InterpolationBinding.prototype.call = function call() {
this._version++;
this.interpolate(this.mode === _aureliaBinding.bindingMode.oneWay, false);
if (this.source !== undefined) {
this._version++;
this.interpolate(this.mode === _aureliaBinding.bindingMode.oneWay, false);
}
};

InterpolationBinding.prototype.interpolate = function interpolate(connect, initial) {
Expand Down
6 changes: 4 additions & 2 deletions dist/es6/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,8 +445,10 @@ class InterpolationBinding {
}

call() {
this._version++;
this.interpolate(this.mode === bindingMode.oneWay, false);
if (this.source !== undefined) {
this._version++;
this.interpolate(this.mode === bindingMode.oneWay, false);
}
}

interpolate(connect, initial) {
Expand Down
6 changes: 4 additions & 2 deletions dist/system/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,10 @@ System.register(['aurelia-logging', 'aurelia-binding', 'aurelia-templating'], fu
};

InterpolationBinding.prototype.call = function call() {
this._version++;
this.interpolate(this.mode === bindingMode.oneWay, false);
if (this.source !== undefined) {
this._version++;
this.interpolate(this.mode === bindingMode.oneWay, false);
}
};

InterpolationBinding.prototype.interpolate = function interpolate(connect, initial) {
Expand Down
9 changes: 9 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### 0.16.1 (2015-10-15)


#### Bug Fixes

* **InterpolationBinding:**
* handle late call ([45096d0a](http://github.com/aurelia/templating-binding/commit/45096d0a02a67c0cbcaad386e516934d9fcb6838)


## 0.16.0 (2015-10-13)


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-binding",
"version": "0.16.0",
"version": "0.16.1",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 729c6e8

Please sign in to comment.