Skip to content

Releases: AliSoftware/Reusable

4.1.2

12 Sep 13:32
1867470
Compare
Choose a tag to compare
  • Update Package.swift and .podspec to use newer min iOS version supported by Xcode 12+.
    @AliSoftware
    #115

  • Fix Xcode 12.5 warnings about the class keyword for protocol inheritance that is deprecated.
    @johnarn
    #113

4.1.1

05 Mar 18:10
Compare
Choose a tag to compare

Swift 5 Support

06 May 19:31
Compare
Choose a tag to compare

4.0.5

02 Dec 22:03
Compare
Choose a tag to compare
  • Fix for only allowing the use of app extension API.
    igorkulman
    #73

4.0.4

13 Oct 13:09
Compare
Choose a tag to compare
  • Only allowing the use of app extension API so using the library in an app extension does not produce a warning.
    @igorkulman
    #70

4.0.3

25 Aug 19:44
e84643b
Compare
Choose a tag to compare
  • Upgrade to CircleCI 2.
    djbe
    #60

  • Update project to support Swift 4.2.
    djbe
    #58

4.0.2 — Docs, Example, Carthage support for Swift 4

25 Aug 19:44
a738240
Compare
Choose a tag to compare

4.0.1

16 Feb 14:19
Compare
Choose a tag to compare
  • Added a tvOS target in the Example project.
  • Carthage should now see the tvOS framework

4.0.0

16 Feb 14:18
Compare
Choose a tag to compare

Breaking changes

  • The method static func loadFromNib(owner:) of NibOwnerLoadable has been replaced by instance method func loadNibContent().
    This is more consistent as we need an instance (owner) anyway, and also avoids possible crashes when used with UIView subclasses
    not implementing non-required initializers init()/init(frame:).
    (Method static func loadFromNib() of NibLoadable is still unchanged).
    @Skoti
    #40
  • The storyboard property of StoryboardBased and StoryboardSceneBased protocols has been renamed to sceneStoryboard to avoid conflicts.
    @jakubgert
    #33

Fixes

  • Fixing documentation typos for CollectionHeaderView and MyXIBIndexSquaceCell.
    @Skoti
  • Fixing TableView Controller scene in Example project, to display cells above UITabBar.
    @Skoti

3.0.1

05 Dec 12:11
Compare
Choose a tag to compare
  • Fix instantiate() implementation on StoryboardSceneBased ViewControllers.
    @jakubgert
    #38
  • Removed strict NibReusable protocol conforming in register functions.
    You can now make a Reusable-only cell with a NibLoadable subclass.
    @nekrich
    #37