Skip to content
This repository has been archived by the owner on Dec 2, 2018. It is now read-only.

Commit

Permalink
Updated change log
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Nov 25, 2012
1 parent 7c074db commit 1d2480c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ replacements are listed here:
(*) Use of ``thisp`` is discouraged. For calling methods, use ``post`` or
``invoke``.

## 0.8.11 (unreleased)
## 0.8.11
- Added ``nfcall``, ``nfapply``, and ``nfbind`` as ``thisp``-less versions of
``ncall`, ``napply``, and ``nbind``. The latter are now deprecated. #142
- Long stack traces no longer cause linearly-growing memory usage when chaining
Expand All @@ -69,6 +69,8 @@ replacements are listed here:
- Fixed ``Q.timeout`` to clear its timeout handle when the promise is rejected;
previously, it kept the event loop alive until the timeout period expired.
#145 @dfilatov
- Added `q/queue` module, which exports an infinite promise queue
constructor.

## 0.8.10

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ If a function cannot return a value or throw an exception without
blocking, it can return a promise instead. A promise is an object
that represents the return value or the thrown exception that the
function may eventually provide. A promise can also be used as a
proxy for a [remote object][Q-Comm] to overcome latency.
proxy for a [remote object][Q-Connection] to overcome latency.

[Q-Comm]: https://github.com/kriskowal/q-comm
[Q-Connection]: https://github.com/kriskowal/q-connection

On the first pass, promises can mitigate the “[Pyramid of
Doom][POD]”: the situation where code marches to the right faster
Expand Down

0 comments on commit 1d2480c

Please sign in to comment.