From d3a902218f49aa041d5a5c9120adaed0770d8b26 Mon Sep 17 00:00:00 2001 From: Ben Gourley Date: Mon, 23 Oct 2017 11:54:41 +0100 Subject: [PATCH] v2.0.1 --- CHANGELOG.md | 9 +++++++++ lib/notification.js | 2 +- package.json | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f76e1f..e49495d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Changelog ========= +## 2.0.1 (2017-10-23) + +### Bug fixes + +* Fix type annotations + [Dan Prince](https://github.com/danprince). + [#118](https://github.com/bugsnag/bugsnag-node/pull/118) +* Fix `autoNotifyUnhandledRejection` option + ## 2.0.0 (2017-10-02) ### Enhancements diff --git a/lib/notification.js b/lib/notification.js index 2a84e1a..f880b11 100644 --- a/lib/notification.js +++ b/lib/notification.js @@ -10,7 +10,7 @@ var Promise = require('promise'), stringify = require("json-stringify-safe"); var NOTIFIER_NAME = "Bugsnag Node Notifier", - NOTIFIER_VERSION = "2.0.0", + NOTIFIER_VERSION = "2.0.1", NOTIFIER_URL = "https://github.com/bugsnag/bugsnag-node", SUPPORTED_SEVERITIES = ["error", "warning", "info"]; diff --git a/package.json b/package.json index faf06a8..304f3f8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bugsnag", "description": "Bugsnag notifier for node.js scripts", - "version": "2.0.0", + "version": "2.0.1", "main": "./lib/bugsnag.js", "typings": "./lib/bugsnag.d.ts", "homepage": "http://bugsnag.com",