Skip to content

Commit

Permalink
chore(all): prepare release 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Aug 9, 2018
1 parent 95768e3 commit a631a77
Show file tree
Hide file tree
Showing 9 changed files with 18 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.3",
"version": "2.1.4",
"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 @@ -1050,7 +1050,7 @@ define(['exports', 'aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aure
if (arrayProto.__au_patched__) {
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
} else {
arrayProto.__au_patched__ = 1;
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
arrayProto.pop = function () {
var notEmpty = this.length > 0;
var methodCallResult = pop.apply(this, arguments);
Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ if (arrayProto.__au_patched__) {
+ ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.'
);
} else {
arrayProto.__au_patched__ = 1;
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
arrayProto.pop = function() {
let notEmpty = this.length > 0;
let methodCallResult = pop.apply(this, arguments);
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 @@ -1003,7 +1003,7 @@ var unshift = arrayProto.unshift;
if (arrayProto.__au_patched__) {
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
} else {
arrayProto.__au_patched__ = 1;
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
arrayProto.pop = function () {
var notEmpty = this.length > 0;
var methodCallResult = pop.apply(this, arguments);
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 @@ -941,7 +941,7 @@ const unshift = arrayProto.unshift;
if (arrayProto.__au_patched__) {
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
} else {
arrayProto.__au_patched__ = 1;
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
arrayProto.pop = function () {
let notEmpty = this.length > 0;
let methodCallResult = pop.apply(this, arguments);
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 @@ -971,7 +971,7 @@ var unshift = arrayProto.unshift;
if (arrayProto.__au_patched__) {
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
} else {
arrayProto.__au_patched__ = 1;
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
arrayProto.pop = function () {
var notEmpty = this.length > 0;
var methodCallResult = pop.apply(this, arguments);
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 @@ -1414,7 +1414,7 @@ System.register(['aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aureli
if (arrayProto.__au_patched__) {
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
} else {
arrayProto.__au_patched__ = 1;
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
arrayProto.pop = function () {
var notEmpty = this.length > 0;
var methodCallResult = pop.apply(this, arguments);
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.4"></a>
## [2.1.4](https://github.com/aurelia/binding/compare/2.1.3...2.1.4) (2018-08-09)


### Bug Fixes

* **array-observation:** make marker non enumerable ([a06c801](https://github.com/aurelia/binding/commit/a06c801))



<a name="2.1.3"></a>
## [2.1.3](https://github.com/aurelia/binding/compare/2.1.2...2.1.3) (2018-08-02)

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

0 comments on commit a631a77

Please sign in to comment.