summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Argasinski <argasinski.hubert@gmail.com>2017-05-23 22:17:37 -0400
committerHubert Argasinski <argasinski.hubert@gmail.com>2017-05-23 22:17:37 -0400
commit3cb7c15300a5b43b7404004bb502fe9c630bb855 (patch)
tree0ad3d1556eb3e29fc79d435100b0dfed5a99df02
parentc16508914d667d9b3b30d8b76556b984e5135c4d (diff)
downloadasync-3cb7c15300a5b43b7404004bb502fe9c630bb855.tar.gz
add links to v2.4.0 & v2.4.1 changelog
-rw-r--r--CHANGELOG.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5b28f32..c7a804e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,14 @@
# v2.4.1
-- Fixed a bug preventing functions wrapped with `timeout()` from being re-used. (#1418, #1419)
+- Fixed a bug preventing functions wrapped with `timeout()` from being re-used. ([#1418](https://github.com/caolan/async/issues/1418), [#1419](https://github.com/caolan/async/issues/1419))
# v2.4.0
-- Added `tryEach`, for running async functions in parallel, where you only expect one to succeed. (#1365, #687)
-- Improved performance, most notably in `parallel` and `waterfall` (#1395)
-- Added `queue.remove()`, for removing items in a `queue` (#1397, #1391)
-- Fixed using `eval`, preventing Async from running in pages with Content Security Policy (#1404, #1403)
-- Fixed errors thrown in an `asyncify`ed function's callback being caught by the underlying Promise (#1408)
-- Fixed timing of `queue.empty()` (#1367)
-- Various doc fixes (#1314, #1394, #1412)
+- Added `tryEach`, for running async functions in parallel, where you only expect one to succeed. ([#1365](https://github.com/caolan/async/issues/1365), [#687](https://github.com/caolan/async/issues/687))
+- Improved performance, most notably in `parallel` and `waterfall` ([#1395](https://github.com/caolan/async/issues/1395))
+- Added `queue.remove()`, for removing items in a `queue` ([#1397](https://github.com/caolan/async/issues/1397), [#1391](https://github.com/caolan/async/issues/1391))
+- Fixed using `eval`, preventing Async from running in pages with Content Security Policy ([#1404](https://github.com/caolan/async/issues/1404), [#1403](https://github.com/caolan/async/issues/1403))
+- Fixed errors thrown in an `asyncify`ed function's callback being caught by the underlying Promise ([#1408](https://github.com/caolan/async/issues/1408))
+- Fixed timing of `queue.empty()` ([#1367](https://github.com/caolan/async/issues/1367))
+- Various doc fixes ([#1314](https://github.com/caolan/async/issues/1314), [#1394](https://github.com/caolan/async/issues/1394), [#1412](https://github.com/caolan/async/issues/1412))
# v2.3.0
- Added support for ES2017 `async` functions. Wherever you can pass a Node-style/CPS function that uses a callback, you can also pass an `async` function. Previously, you had to wrap `async` functions with `asyncify`. The caveat is that it will only work if `async` functions are supported natively in your environment, transpiled implementations can't be detected. ([#1386](https://github.com/caolan/async/issues/1386), [#1390](https://github.com/caolan/async/issues/1390))