All Versions
17
Latest Version
Avg Release Cycle
14 days
Latest Release
1359 days ago

Changelog History
Page 1

  • v0.21.0 Changes

    September 27, 2020

    ๐Ÿš€ This release bumps to Swift 5.3 / Xcode 12

  • v0.20.0 Changes

    August 24, 2020

    ๐Ÿš€ This release brings a short syntax to declare a Feedback attached to a Gear

  • v0.19.0 Changes

    August 10, 2020

    ๐Ÿš€ This release brings some helper initializers for Feedback that ease the passing of dependencies. (see the new section in the README)

  • v0.18.0 Changes

    August 09, 2020

    ๐Ÿš€ This release refactors the scheduling of the loops. While it is still possible to specify a scheduler for each feedback, the global scheduling of the loop is now declared directly at the Spin definition and no more at the Reducer level.

    โฑ If no executer is specified, default schedulers are applied to each loop (on background serial queues).

  • v0.17.0 Changes

    July 27, 2020

    ๐Ÿš€ This release brings:

    • a new DSL syntax that allows to declare the Reducer after the Feedbacks
    • a Gear feature that allows several spins to communicate together
  • v0.16.1 Changes

    April 26, 2020

    ๐Ÿš€ This release fixes a memory leak in the stream built from a Spin (for the 3 reactive implementations)

  • v0.16.0 Changes

    April 13, 2020

    ๐Ÿš€ This release brings the support for Carthage.
    โšก๏ธ Imports have to be updated in the apps since the packages have been renamed:

    • Spin_Swift -> SpinCommon
    • Spin_RxSwift -> SpinRxSwift
    • Spin_ReactiveSwift -> SpinReactiveSwift
    • Spin_Combine -> SpinCombine
  • v0.15.0 Changes

    March 15, 2020

    ๐Ÿš€ This release renames types to erase the specificities of each reactive frameworks:

    • RxFeedback, ReactiveFeedback, CombineFeedback -> Feedback
    • RxReducer, ReactiveReducer, CombineReducer -> Reducer
    • RxSpin, ReactiveSpin, CombineSpin -> Spin
    • RxUISpin, ReactiveUISpin, CombineUISpin -> UISpin
    • RxSwiftUISpin, ReactiveSwiftUISpin, CombineSwiftUISpin -> SwiftUISpin

    If you have to mix several reactive frameworks in the same app, you can use the provided type aliases (RxFeedback for Spin_RxSwift.Feedback, ReactiveFeedback for Spin_ReactiveSwift.Feedback, ...)

  • v0.14.0 Changes

    March 10, 2020

    ๐Ÿš€ This release adds a start() function to xxUISpin and xxSwiftUISpin. This allows the developper to not handle the subscription by himself.

  • v0.13.0 Changes

    March 10, 2020

    ๐Ÿš€ This release:

    • ๐Ÿ”จ brings some refactoring in ReactiveStream to remove unused code and bring the 'consume' function
    • factorizes some code between xxUISpin and xxSwiftUISpin
    • โœ‚ removes the subscription from the xxUISpin and xxSwiftUISpin in order to let the user handle it