Skip to content

Commit

Permalink
chore(all): prepare release 2.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Dec 1, 2018
1 parent f78529b commit 7759862
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 2 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-binding",
"version": "2.1.6",
"version": "2.1.7",
"description": "A modern databinding library for JavaScript and HTML.",
"license": "MIT",
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions dist/amd/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2884,6 +2884,8 @@ define(['exports', 'aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aure
}
} else if (this.ch === 0x5C) {
result += fromCharCode(unescape(this.next()));
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated template literal');
} else {
result += fromCharCode(this.ch);
}
Expand Down
2 changes: 2 additions & 0 deletions dist/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2748,6 +2748,8 @@ export class ParserImplementation {
}
} else if (this.ch === /*\*/0x5C) {
result += fromCharCode(unescape(this.next()));
} else if (this.ch === /*EOF*/0 || this.idx >= this.len) {
this.err('Unterminated template literal');
} else {
result += fromCharCode(this.ch);
}
Expand Down
2 changes: 2 additions & 0 deletions dist/commonjs/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2837,6 +2837,8 @@ var ParserImplementation = exports.ParserImplementation = function () {
}
} else if (this.ch === 0x5C) {
result += fromCharCode(unescape(this.next()));
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated template literal');
} else {
result += fromCharCode(this.ch);
}
Expand Down
2 changes: 2 additions & 0 deletions dist/es2015/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2611,6 +2611,8 @@ export let ParserImplementation = class ParserImplementation {
}
} else if (this.ch === 0x5C) {
result += fromCharCode(unescape(this.next()));
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated template literal');
} else {
result += fromCharCode(this.ch);
}
Expand Down
2 changes: 2 additions & 0 deletions dist/native-modules/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2803,6 +2803,8 @@ export var ParserImplementation = function () {
}
} else if (this.ch === 0x5C) {
result += fromCharCode(unescape(this.next()));
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated template literal');
} else {
result += fromCharCode(this.ch);
}
Expand Down
2 changes: 2 additions & 0 deletions dist/system/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3212,6 +3212,8 @@ System.register(['aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aureli
}
} else if (this.ch === 0x5C) {
result += fromCharCode(unescape(this.next()));
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated template literal');
} else {
result += fromCharCode(this.ch);
}
Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="2.1.7"></a>
## [2.1.7](https://github.com/aurelia/binding/compare/2.1.6...2.1.7) (2018-12-01)


### Bug Fixes

* **parser:** throw on unterminated template literal ([5c5b5e3](https://github.com/aurelia/binding/commit/5c5b5e3))



<a name="2.1.6"></a>
## [2.1.6](https://github.com/aurelia/binding/compare/2.1.5...2.1.6) (2018-10-30)

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-binding",
"version": "2.1.6",
"version": "2.1.7",
"description": "A modern databinding library for JavaScript and HTML.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 7759862

Please sign in to comment.