Skip to content

Commit

Permalink
chore(*): prepare release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcScheib committed May 15, 2017
1 parent 3fdd56f commit e72892f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 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-notify",
"version": "0.7.1",
"version": "0.8.0",
"description": "A notification plugin for Aurelia.",
"keywords": [
"aurelia",
Expand Down
4 changes: 2 additions & 2 deletions dist/aurelia-notify.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export let NotificationLevel = {
export function invokeLifecycle(instance: any, name: string, model?: any): Promise<any> {
if (typeof instance[name] === 'function') {
return new Promise(resolve => {
resolve(instance[name](model))
})
resolve(instance[name](model));
})
.then(result => {
if (result !== null && result !== undefined) {
return result;
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="0.8.0"></a>
# [0.8.0](https://github.com/MarcScheib/aurelia-notify/compare/0.7.1...0.8.0) (2017-05-15)


### Features

* **webpack:** add webpack resources ([8404de9](https://github.com/MarcScheib/aurelia-notify/commit/8404de9))



<a name="0.7.1"></a>
## [0.7.1](https://github.com/MarcScheib/aurelia-notify/compare/0.7.0...0.7.1) (2017-04-23)

Expand Down
2 changes: 1 addition & 1 deletion doc/api.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-notify",
"version": "0.7.1",
"version": "0.8.0",
"description": "A notification plugin for Aurelia.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit e72892f

Please sign in to comment.