Skip to content

Commit

Permalink
chore(all): prepare release 2.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Oct 30, 2018
1 parent 24aa631 commit 202d1bd
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 8 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.5",
"version": "2.1.6",
"description": "A modern databinding library for JavaScript and HTML.",
"license": "MIT",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2849,7 +2849,7 @@ define(['exports', 'aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aure

buffer.push(fromCharCode(_unescaped));
marker = this.idx;
} else if (this.ch === 0) {
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated quote');
} else {
this.next();
Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2711,7 +2711,7 @@ export class ParserImplementation {

buffer.push(fromCharCode(unescaped));
marker = this.idx;
} else if (this.ch === /*EOF*/0) {
} else if (this.ch === /*EOF*/0 || this.idx >= this.len) {
this.err('Unterminated quote');
} else {
this.next();
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2802,7 +2802,7 @@ var ParserImplementation = exports.ParserImplementation = function () {

buffer.push(fromCharCode(_unescaped));
marker = this.idx;
} else if (this.ch === 0) {
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated quote');
} else {
this.next();
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2576,7 +2576,7 @@ export let ParserImplementation = class ParserImplementation {

buffer.push(fromCharCode(unescaped));
marker = this.idx;
} else if (this.ch === 0) {
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated quote');
} else {
this.next();
Expand Down
2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2768,7 +2768,7 @@ export var ParserImplementation = function () {

buffer.push(fromCharCode(_unescaped));
marker = this.idx;
} else if (this.ch === 0) {
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated quote');
} else {
this.next();
Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3177,7 +3177,7 @@ System.register(['aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aureli

buffer.push(fromCharCode(_unescaped));
marker = this.idx;
} else if (this.ch === 0) {
} else if (this.ch === 0 || this.idx >= this.len) {
this.err('Unterminated quote');
} else {
this.next();
Expand Down
11 changes: 11 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="2.1.6"></a>
## [2.1.6](https://github.com/aurelia/binding/compare/2.1.5...2.1.6) (2018-10-30)


### Bug Fixes

* **doc:** fix html5 syntax ([bfbb06a](https://github.com/aurelia/binding/commit/bfbb06a)), closes [/github.com/aurelia/templating/pull/647#issuecomment-427989601](https://github.com//github.com/aurelia/templating/pull/647/issues/issuecomment-427989601)
* **parser:** throw on unterminated quote instead of infinite loop ([4907f38](https://github.com/aurelia/binding/commit/4907f38))



<a name="2.1.5"></a>
## [2.1.5](https://github.com/aurelia/binding/compare/2.1.4...2.1.5) (2018-09-25)

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

0 comments on commit 202d1bd

Please sign in to comment.