diff --git a/CHANGES.md b/CHANGES.md index 831e8233..fcb91bf6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +### 3.7.1 + +* Fix `when.settle` unhandled rejection reporting case. + ### 3.7.0 * Add [`process` and `window` unhandled rejection events](#docs/debug-api.md) for cross-library debugging tools. diff --git a/bower.json b/bower.json index f858b2ae..131fdc40 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "when", - "version": "3.7.0", + "version": "3.7.1", "main": "when.js", "moduleType": ["amd", "node"], "description": "A lightweight Promises/A+ and when() implementation, plus other async goodies.", diff --git a/package.json b/package.json index b3685922..60fce650 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "when", - "version": "3.7.0", + "version": "3.7.1", "description": "A lightweight Promises/A+ and when() implementation, plus other async goodies.", "keywords": [ "cujo", diff --git a/when.js b/when.js index 1ce75174..beb25178 100644 --- a/when.js +++ b/when.js @@ -5,7 +5,7 @@ * when is part of the cujoJS family of libraries (http://cujojs.com/) * @author Brian Cavalier * @author John Hann - * @version 3.7.0 + * @version 3.7.1 */ (function(define) { 'use strict'; define(function (require) {