summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2016-03-19 21:39:49 -0700
committerAlexander Early <alexander.early@gmail.com>2016-03-19 21:39:49 -0700
commitfa85fcaf02e0689876159465e0490901d03b9bdc (patch)
treea9e87eaac4d8367213edb9a714bf2745cf8555c8
parent492fcbdb26e2e14512df17201c2e92e4adcfef50 (diff)
downloadasync-fa85fcaf02e0689876159465e0490901d03b9bdc.tar.gz
fix issue numbers in changelog
-rw-r--r--CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f762115..56ccb4a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -21,8 +21,8 @@ Another theme is performance. We have eliminated internal deferrals in all case
## New Features
-- Async is now modularized. Individual functions can be `require()`d from the main package. (`require('async/auto')`) (#696)
-- Async is also available as a collection of ES2015 modules in the new `async-es` package. (`import {forEachSeries} from 'async-es'`) (#696)
+- Async is now modularized. Individual functions can be `require()`d from the main package. (`require('async/auto')`) (#984, #996)
+- Async is also available as a collection of ES2015 modules in the new `async-es` package. (`import {forEachSeries} from 'async-es'`) (#984, #996)
- Added `race`, analogous to `Promise.race()`. It will run an array of async tasks in parallel and will call its callback with the result of the first task to respond. (#568, #1038)
- Added `timeout`, a wrapper for an async function that will make the task time-out after the specified time. (#1007, #1027)
- `constant` supports dynamic arguments -- it will now always use its last argument as the callback. (#1016, #1052)