Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Jun 10, 2011
1 parent 01533a8 commit 1e2a118
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# vim:ts=4:sts=4:sw=4:et:tw=60

0.5.0 - MINOR BACKWARD INCOMPATIBILITY
- Exceptions are no longer reported when consumed.
- Removed ``error`` from the API. Since exceptions are
getting consumed, throwing them in an errback causes the
exception to silently disappear. Use ``end``.
- Added ``end`` as both an API method and a promise-chain
ending method. It causes propagated rejections to be
thrown, which allows Node to write stack traces and
emit ``uncaughtException`` events, and browsers to
likewise emit ``onerror`` and log to the console.
- Added ``join`` and ``wait`` as promise chain functions,
so you can wait for variadic promises, returning your own
promise back, or join variadic promises, resolving with a
callback that receives variadic fulfillment values.

0.4.4
- ``end`` no longer returns a promise. It is the end of the
promise chain.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "q",
"description": "A library for promises (CommonJS/Promises/A,B,D)",
"version": "0.4.4",
"version": "0.5.0",
"homepage": "http://github.com/kriskowal/q/",
"author": "Kris Kowal <[email protected]> (http://github.com/kriskowal/)",
"contributors": [
Expand Down

0 comments on commit 1e2a118

Please sign in to comment.