From 729c6e8fc6f122cdb0f1e806e7b95d4680e435b5 Mon Sep 17 00:00:00 2001 From: Rob Eisenberg Date: Thu, 15 Oct 2015 10:33:52 -0400 Subject: [PATCH] chore(all): prepare release 0.16.1 --- bower.json | 2 +- dist/amd/aurelia-templating-binding.js | 6 ++++-- dist/aurelia-templating-binding.js | 6 ++++-- dist/commonjs/aurelia-templating-binding.js | 6 ++++-- dist/es6/aurelia-templating-binding.js | 6 ++++-- dist/system/aurelia-templating-binding.js | 6 ++++-- doc/CHANGELOG.md | 9 +++++++++ package.json | 2 +- 8 files changed, 31 insertions(+), 12 deletions(-) diff --git a/bower.json b/bower.json index 7244fdc..7e7941e 100644 --- a/bower.json +++ b/bower.json @@ -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", diff --git a/dist/amd/aurelia-templating-binding.js b/dist/amd/aurelia-templating-binding.js index 374d99c..7ad54e6 100644 --- a/dist/amd/aurelia-templating-binding.js +++ b/dist/amd/aurelia-templating-binding.js @@ -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) { diff --git a/dist/aurelia-templating-binding.js b/dist/aurelia-templating-binding.js index acfad3e..be0232f 100644 --- a/dist/aurelia-templating-binding.js +++ b/dist/aurelia-templating-binding.js @@ -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) { diff --git a/dist/commonjs/aurelia-templating-binding.js b/dist/commonjs/aurelia-templating-binding.js index 1a40a38..52ca6e1 100644 --- a/dist/commonjs/aurelia-templating-binding.js +++ b/dist/commonjs/aurelia-templating-binding.js @@ -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) { diff --git a/dist/es6/aurelia-templating-binding.js b/dist/es6/aurelia-templating-binding.js index acfad3e..be0232f 100644 --- a/dist/es6/aurelia-templating-binding.js +++ b/dist/es6/aurelia-templating-binding.js @@ -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) { diff --git a/dist/system/aurelia-templating-binding.js b/dist/system/aurelia-templating-binding.js index 75472d5..40fa1f0 100644 --- a/dist/system/aurelia-templating-binding.js +++ b/dist/system/aurelia-templating-binding.js @@ -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) { diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index ef9f7c6..122a024 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index afcf73f..4082fc1 100644 --- a/package.json +++ b/package.json @@ -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",