Skip to content

Commit 585f57f

Browse files
committed
Update changelog and versions
1 parent 46cbbf8 commit 585f57f

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 3.3.0
2+
3+
* Promote [`when.race`](docs/api.md#whenrace) to public API.
4+
* `when.any` and `when.some` now reject with a `RangeError` if the race is obviously unwinnable, for example: `when.some([1,2,3], 4)`. See the [`when.any`](docs/api.md#whenany) and [`when.some`](docs/api.md#whensome) docs for more info.
5+
16
### 3.2.3
27

38
* Updated [debugging docs](docs/api.md#debugging-promises)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "when",
3-
"version": "3.2.3",
3+
"version": "3.3.0",
44
"main": "when.js",
55
"moduleType": ["amd", "node"],
66
"description": "A lightweight Promises/A+ and when() implementation, plus other async goodies.",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "when",
3-
"version": "3.2.3",
3+
"version": "3.3.0",
44
"description": "A lightweight Promises/A+ and when() implementation, plus other async goodies.",
55
"keywords": [
66
"cujo",

when.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* when is part of the cujoJS family of libraries (http://cujojs.com/)
66
* @author Brian Cavalier
77
* @author John Hann
8-
* @version 3.2.3
8+
* @version 3.3.0
99
*/
1010
(function(define) { 'use strict';
1111
define(function (require) {

0 commit comments

Comments
 (0)