UNPKG

869 BMarkdownView Raw
1# Master
2
3# 3.0.2
4
5* correctly bump both bower and package.json versions
6
7# 3.0.1
8
9* no longer include dist/test in npm releases
10
11# 3.0.0
12
13* use nextTick() instead of setImmediate() to schedule microtasks with node 0.10. Later versions of
14 nodes are not affected as they were already using nextTick(). Note that using nextTick() might
15 trigger a depreciation warning on 0.10 as described at https://github.com/cujojs/when/issues/410.
16 The reason why nextTick() is preferred is that is setImmediate() would schedule a macrotask
17 instead of a microtask and might result in a different scheduling.
18 If needed you can revert to the former behavior as follow:
19
20 var Promise = require('es6-promise').Promise;
21 Promise._setScheduler(setImmediate);
22
23# 2.0.0
24
25* re-sync with RSVP. Many large performance improvements and bugfixes.
26
27# 1.0.0
28
29* first subset of RSVP