Releases: miquido/futura
Update cocoapods support
New tools
Memory leak fix
Fixed memory leak in Future implementation - mutex instance leaking in some cases.
CFBundle fix
CFBundle fixes 🙂
Inlining fixes
Just fixes under the hood 😇
Replace @inline(__always)
with @inlinable
Debug and Test
There is a lot of new things that will help you write better code!
Brand new debug system (hope that this time it will be good enough 😅). Compile Futura with FUTURA_DEBUG flag and use an extra function on Futures and Signals - debug. It will use os_log to provide information about what is happening inside. You can also use other logging tools if you wish by plugging in your custom logging function.
Brand new package - FuturaTest. It is a set of tools that will help you write better tests for your code. There is a TestWorker which allows you to transform Futures and Signals to be completely synchronous and manually execute all tasks. You can also use extensions providing async assertions with TestExpectations.
Hope you will like it!
Xcode build settings fix
Just one more fix for Xcode 😅
Xcode build settings fix
Just fixing xcode stuff 😇
Update to Swift 5
Just swift version up :)
SPM is here!
- adding Swift Package Manager support
- extending Signal operators
- adding TimedSignal
- minor fixes, improvements