v0.5.0
There are a few methods which have been deprecated and will be removed in a future release. Each one has a drop-in replacement (and currently calling the deprecated version just routes to the new one):
bindUntilActivityEvent()
andbindUntilFragmentEvent()
->bindUntilEvent()
bindView()
->bind()
The other changes mostly involve opening up the API for more customization:
- #78: Added rxlifecycle-kotlin (adds some extensions)
- #79: Made bindUntilEvent() public, deprecated more specific calls
- #82: Opened up bind() methods for public consumption
- #83, #85: Added
annotations for better lint checking - #88: Use
.equals()
instead of == for event comparison (for
custom event support with the newly opened-upbind()
) - #89: Make OutsideLifecycleException public (for anyone who wants
to write their ownbind()
implementations)