Skip to content

v0.5.0

Compare
Choose a tag to compare
@dlew dlew released this 27 Feb 20:50
· 215 commits to master since this release

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() and bindUntilFragmentEvent() -> 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-up bind())
  • #89: Make OutsideLifecycleException public (for anyone who wants
    to write their own bind() implementations)