Eureka v1.4.1 Release Notes

  • 🚀 Released on 2016-02-25.

    💥 Breaking Changes
    • SelectorRow now requires the cell among its generic values. This means it is easier to change the cell for a selector row.
    • _AlertRow and _ActionSheetRow require generic cell parameter

    If you are using custom rows that inherit from SelectorRow then you might want to change them as follows (or use your custom cell):

    // before
    // public final class LocationRow : SelectorRow<CLLocation, MapViewController>, RowType
    // now
    public final class LocationRow : SelectorRow<CLLocation, MapViewController, PushSelectorCell<CLLocation>>, RowType