Skip to content

Commit

Permalink
Updates changelog to v7.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelbr committed Jul 21, 2020
1 parent 3f4a4ce commit ff6ae61
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

### `v7.0.2`

- Updates dependencies
- Fixes issue with haning Windows notifications when disabled ([#335](https://github.com/mikaelbr/node-notifier/pull/335))

### `v7.0.1`

- Fixes import of uuid, removes deprecation warnings

### `v7.0.0`

#### Features
Expand Down Expand Up @@ -238,7 +247,7 @@ notifier.notify();

```js
var notifier = require('node-notifier');
notifier.notify({ wait: true }, function(err, response) {
notifier.notify({ wait: true }, function (err, response) {
// response is response after user have interacted
// with the notification or the notification has timed out.
});
Expand All @@ -249,7 +258,7 @@ notifier.notify({ wait: true }, function(err, response) {

```js
var notifier = require('node-notifier');
notifier.on('click', function(notificationObject, options) {
notifier.on('click', function (notificationObject, options) {
// options.someArbitraryData === 'foo'
});
notifier.notify({ wait: true, someArbitraryData: 'foo' });
Expand Down

0 comments on commit ff6ae61

Please sign in to comment.