7.0.1
Warning
This release is withdrawn. It contains an unintended threading change from 7.0.0. Only the binding operators (Bind, BindTwoWay, OneWayBind, BindOneWay, BindTo and BindCommand) are meant to move work onto a thread, because they connect a view to a view model and must write on the view's thread. WhenChanged, WhenAnyValue, WhenAny and the other observation operators are for general use, so you choose the thread they run on. In this release, when the same property is set from two threads at the same time, an observation subscriber can run on the other thread, and a thread already delivering a change can be held for as long as the other thread keeps setting the property. The next major release fixes it; upgrade to that release.
🗞️ What's Changed
🐛 Fixes
- e200cb3 fix(build): register interceptor namespaces through the InterceptorsNamespaces property (#104) @glennawatson
🔗 Full Changelog: v7.0.0...v7.0.1
🙌 Contributions
💖 Thanks to all the contributors: @glennawatson