Skip to content

Latest commit

 

History

History
133 lines (106 loc) · 3.81 KB

CHANGELOG.md

File metadata and controls

133 lines (106 loc) · 3.81 KB

Changelog

1.8.1

  • fix platform version in package file (thanks to greatsk55 for this contribution!)

1.8.0

  • add privacy info for user defaults usage (thanks to Alexander Vogel for suggesting this)
  • bump iOS deployment target to 13.0
  • bump minumum Xcode version to 15.0

1.7.2

  • add support for viewIsAppearing (thanks to Tommy Han for this contribution!)

1.7.1

  • update to RxSwift 6.2
  • fix Xcode 13 error (thanks to hebdavepaul0 for this contribution!)

1.7.0

  • update to RxSwift 6.0
  • bump iOS deployment target to 10.0

1.6.1

1.6.0

  • uses notifications to create the AppState observables.
  • removes all the UIAppDelegate related stuff

1.5.3

  • adds Swift Package Manager support. (thanks to Sergey Kuleshov for this contribution!)

1.5.2

  • sets Swift version to 5.0

1.5.1

  • updates dependencies to RxSwift 5.0

1.5.0

  • updates to Swift 5

1.4.1

  • improved Carthage build stability

1.4.0

  • New observable appVersion that emits your app's previous and current version string each time the user opens the app
  • firstLaunchOfNewVersionOnly now emits an AppVersion object that contains the previous and the current app version string (thanks to Ashton Meuser for suggesting that change!)

1.3.0

  • App open counts and app versions are now tracked even if there is no subscription to the relevant Observables (thanks to Philippe Cuvillier for suggesting that change!)

1.2.0

  • updates to Swift 4.2
  • removes obsolete Equatable implementation (thanks to Pavel Sorokin for the contribution)
  • removes all calls to UserDefaults.standard.synchronize() (thanks again to Pavel Sorokin for pointing that out)

1.1.2

  • updates to Swift 4.1
  • fixes an issue with Carthage compatibility

1.1.1

  • fixes issue #13 where firstLaunchOfNewVersionOnly would not emit events correctly. Thanks to ptigro89 for finding that bug!

1.1.0

  • add observables for viewDidLoad and viewDidLayoutSubviews (thanks to ivanmkc for the contribution)
  • update example to show more UIViewController view states

1.0.1

  • add observable for applicationWillEnterForeground (thanks to pepasflo for the contribution)
  • fix deployment target for Carthage usage

1.0.0

  • add Observables for UIViewController's view-related notifications
  • allow multiple subscriptions to Observables that use UserDefaults (thanks to junmo-kim for the contribution)

0.4.0

  • update RxSwift / RxCocoa dependency to 4.0
  • update to Swift 4.0 (thanks to pual for requesting a crucial change in RxSwift 4)

0.3.4

  • update RxSwift / RxCocoa dependency to 3.4

0.3.3

  • update RxSwift / RxCocoa dependency to 3.3
  • update to Swift 3.1

0.3.1

  • bugfix in isFirstLaunchOfNewVersion (fixed by krider2010)
  • update RxSwift / RxCocoa dependency to 3.1

0.3.0

  • update to Swift 3.0
  • update RxSwift / RxCocoa dependency to 3.0
  • use Reactive proxy
  • add isFirstLaunchOfNewVersion (contribution by krider2010)

0.2.0

  • update to Swift 2.3

0.1.1

  • update RxSwift / RxCocoa dependency to 2.6
  • fix deprecation warnings
  • update iOS and Xcode version in .travis.yml file

0.1.0

  • Initial release