v1.2.1
Maintenance release with one bug fix and one addition:
Future.reduce
now acceptsfalse
as a default value, and its behaviour whennil
was used as default value has been clarified. Thanks to @stenlarsson for the fix.Future.after
has been added – it's a shortcut and optimization for the common patternFuture.all(futures).map(nil)
. Thanks to @grddev for this feature.