Skip to content

v3.0.0

Compare
Choose a tag to compare
@stakach stakach released this 26 Sep 11:34
· 7 commits to master since this release

fixes issue where you couldn't do Promise.all or Promise.any where the promise types / return values differed.
See #2

Breaking change as now the Promise class has a generic type.
So you can no longer do something like promises = [] of Promise and instead need to do promises = [] of Promise(String) etc