Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Mar 4, 2016
1 parent 02b8f3d commit 7b27ebb
Show file tree
Hide file tree
Showing 8 changed files with 35 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-templating",
"version": "1.0.0-beta.1.1.3",
"version": "1.0.0-beta.1.1.4",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
5 changes: 5 additions & 0 deletions dist/amd/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -4025,6 +4025,11 @@ define(['exports', 'aurelia-logging', 'aurelia-pal', 'aurelia-metadata', 'aureli
});
} else if (context.viewSlot) {
context.viewSlot.removeAll();

if (context.compositionTransactionNotifier) {
context.compositionTransactionNotifier.done();
}

return Promise.resolve(null);
}
};
Expand Down
5 changes: 5 additions & 0 deletions dist/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -4794,6 +4794,11 @@ export class CompositionEngine {
});
} else if (context.viewSlot) {
context.viewSlot.removeAll();

if (context.compositionTransactionNotifier) {
context.compositionTransactionNotifier.done();
}

return Promise.resolve(null);
}
}
Expand Down
5 changes: 5 additions & 0 deletions dist/commonjs/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -4044,6 +4044,11 @@ var CompositionEngine = (function () {
});
} else if (context.viewSlot) {
context.viewSlot.removeAll();

if (context.compositionTransactionNotifier) {
context.compositionTransactionNotifier.done();
}

return Promise.resolve(null);
}
};
Expand Down
5 changes: 5 additions & 0 deletions dist/es6/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -4794,6 +4794,11 @@ export class CompositionEngine {
});
} else if (context.viewSlot) {
context.viewSlot.removeAll();

if (context.compositionTransactionNotifier) {
context.compositionTransactionNotifier.done();
}

return Promise.resolve(null);
}
}
Expand Down
5 changes: 5 additions & 0 deletions dist/system/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -4232,6 +4232,11 @@ System.register(['aurelia-logging', 'aurelia-pal', 'aurelia-metadata', 'aurelia-
});
} else if (context.viewSlot) {
context.viewSlot.removeAll();

if (context.compositionTransactionNotifier) {
context.compositionTransactionNotifier.done();
}

return Promise.resolve(null);
}
};
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 1.0.0-beta.1.1.4 (2016-03-04)


#### Bug Fixes

* **composition-engine:** complete composition work on null ([02b8f3d9](http://github.com/aurelia/templating/commit/02b8f3d9bb9446290cfc15d0d0148cfa07bb29c5))


### 1.0.0-beta.1.1.3 (2016-03-04)


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-templating",
"version": "1.0.0-beta.1.1.3",
"version": "1.0.0-beta.1.1.4",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 7b27ebb

Please sign in to comment.