This repository was archived by the owner on Jul 3, 2022. It is now read-only.
Releases: Thomvis/BrightFutures
Releases · Thomvis/BrightFutures
5.1.0
5.0.1
5.0.0-beta.3
This beta brings support for Xcode 8 GM.
5.0.0-beta.2
This beta brings compatibility with Xcode 8 beta 6.
5.0.0-beta.1: Preliminary Swift 3 Support
- Removes Queue and Semaphore in favor of DispatchQueue and DispatchSemaphore
4.1.1
4.1.0
4.0.1
4.0.0
BrightFutures 4.0.0 is compatible with Swift 2.2 and Xcode 7.3.
- [BREAKING]
NoError
has been removed from BrightFutures. - [BREAKING]
SequenceType.fold(_:zero:f:)
and methods that use it (such asSequenceType.traverse(_:f:)
andSequenceType.sequence()
) are now slightly more asynchronous: to prevent stack overflows, after a certain number of items, it will perform an asynchronous call. - [FIX] Fixed stack overflow when using
sequence()
ortraverse()
on large sequences.
4.0.0-beta.2
Breaking: SequenceType.fold(_:zero:f:)
and methods that use it (such as SequenceType.traverse(_:f:)
and SequenceType.sequence()
) are now slightly more asynchronous: to prevent stack overflows, after a certain number of items, it will perform an asynchronous call.
Fixed stack overflow when using sequence()
or traverse(_:f:)
on large sequences.