Skip to content

Commit

Permalink
chore(all): prepare release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Sep 29, 2016
1 parent 06be105 commit e7733f0
Show file tree
Hide file tree
Showing 9 changed files with 72 additions and 38 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating",
"version": "1.1.0",
"version": "1.1.1",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down Expand Up @@ -28,6 +28,6 @@
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.0.0",
"aurelia-path": "^1.0.0",
"aurelia-task-queue": "^1.0.0"
"aurelia-task-queue": "^1.1.0"
}
}
14 changes: 9 additions & 5 deletions dist/amd/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -3514,13 +3514,17 @@ define(['exports', 'aurelia-logging', 'aurelia-metadata', 'aurelia-pal', 'aureli
var oldValue = this.currentValue;

if (oldValue !== newValue) {
if (this.publishing && this.notqueued) {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}

this.oldValue = oldValue;
this.currentValue = newValue;

if (this.publishing && this.notqueued) {
if (this.taskQueue.flushing) {
this.call();
} else {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}
}
}
};

Expand Down
14 changes: 9 additions & 5 deletions dist/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -4363,13 +4363,17 @@ export class BehaviorPropertyObserver {
let oldValue = this.currentValue;

if (oldValue !== newValue) {
if (this.publishing && this.notqueued) {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}

this.oldValue = oldValue;
this.currentValue = newValue;

if (this.publishing && this.notqueued) {
if (this.taskQueue.flushing) {
this.call();
} else {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}
}
}
}

Expand Down
14 changes: 9 additions & 5 deletions dist/commonjs/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -3495,13 +3495,17 @@ var BehaviorPropertyObserver = exports.BehaviorPropertyObserver = (_dec9 = (0, _
var oldValue = this.currentValue;

if (oldValue !== newValue) {
if (this.publishing && this.notqueued) {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}

this.oldValue = oldValue;
this.currentValue = newValue;

if (this.publishing && this.notqueued) {
if (this.taskQueue.flushing) {
this.call();
} else {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}
}
}
};

Expand Down
14 changes: 9 additions & 5 deletions dist/es2015/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -3222,13 +3222,17 @@ export let BehaviorPropertyObserver = (_dec9 = subscriberCollection(), _dec9(_cl
let oldValue = this.currentValue;

if (oldValue !== newValue) {
if (this.publishing && this.notqueued) {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}

this.oldValue = oldValue;
this.currentValue = newValue;

if (this.publishing && this.notqueued) {
if (this.taskQueue.flushing) {
this.call();
} else {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}
}
}
}

Expand Down
14 changes: 9 additions & 5 deletions dist/native-modules/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -3458,13 +3458,17 @@ export var BehaviorPropertyObserver = (_dec9 = subscriberCollection(), _dec9(_cl
var oldValue = this.currentValue;

if (oldValue !== newValue) {
if (this.publishing && this.notqueued) {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}

this.oldValue = oldValue;
this.currentValue = newValue;

if (this.publishing && this.notqueued) {
if (this.taskQueue.flushing) {
this.call();
} else {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}
}
}
};

Expand Down
14 changes: 9 additions & 5 deletions dist/system/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -3917,13 +3917,17 @@ System.register(['aurelia-logging', 'aurelia-metadata', 'aurelia-pal', 'aurelia-
var oldValue = this.currentValue;

if (oldValue !== newValue) {
if (this.publishing && this.notqueued) {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}

this.oldValue = oldValue;
this.currentValue = newValue;

if (this.publishing && this.notqueued) {
if (this.taskQueue.flushing) {
this.call();
} else {
this.notqueued = false;
this.taskQueue.queueMicroTask(this);
}
}
}
};

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="1.1.1"></a>
## [1.1.1](https://github.com/aurelia/templating/compare/1.1.0...v1.1.1) (2016-09-29)


### Bug Fixes

* **BehaviorPropertyObserver:** publish immediately when TaskQueue already flushing ([06be105](https://github.com/aurelia/templating/commit/06be105)), closes [aurelia/binding#496](https://github.com/aurelia/binding/issues/496) [aurelia/binding#479](https://github.com/aurelia/binding/issues/479) [#363](https://github.com/aurelia/templating/issues/363)



<a name="1.1.0"></a>
# [1.1.0](https://github.com/aurelia/templating/compare/1.0.1...v1.1.0) (2016-09-07)

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating",
"version": "1.1.0",
"version": "1.1.1",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down Expand Up @@ -37,7 +37,7 @@
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.0.0",
"aurelia-path": "^1.0.0",
"aurelia-task-queue": "^1.0.0"
"aurelia-task-queue": "^1.1.0"
},
"dependencies": {
"aurelia-binding": "^1.0.0",
Expand All @@ -47,11 +47,11 @@
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.0.0",
"aurelia-path": "^1.0.0",
"aurelia-task-queue": "^1.0.0"
"aurelia-task-queue": "^1.1.0"
},
"devDependencies": {
"aurelia-pal-browser": "^1.0.0-rc.1.0.0",
"aurelia-polyfills": "^1.0.0-rc.1.0.0",
"aurelia-pal-browser": "^1.0.0",
"aurelia-polyfills": "^1.0.0",
"babel": "babel-core@^5.8.24",
"babel-runtime": "^5.8.24",
"core-js": "^2.0.3"
Expand All @@ -65,7 +65,7 @@
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.0.0",
"aurelia-path": "^1.0.0",
"aurelia-task-queue": "^1.0.0"
"aurelia-task-queue": "^1.1.0"
},
"devDependencies": {
"aurelia-tools": "^0.2.4",
Expand Down

0 comments on commit e7733f0

Please sign in to comment.