Releases: AliSoftware/Reusable
Releases · AliSoftware/Reusable
4.1.2
4.1.1
-
Update the README with up-to-date Swift versions and Installation Instructions.
@kuyazee
@AliSoftware
#95 -
Set
APPLICATION_EXTENSION_API_ONLY
build setting on built frameworks.
@AliSoftware
#98
@nahung89
#88 -
Update tools used by the project (Xcode, CocoaPods, CI, Carthage).
Also SPM builds are now tested by CI.
@AliSoftware
#97 -
Update SPM
Package.swift
to mention supported platforms.
@MortyMerr
#89
@pahnev
#93
@mackoj
#85
Swift 5 Support
- Support for Swift 5.0
@florentmorin
#80
4.0.5
- Fix for only allowing the use of app extension API.
igorkulman
#73
4.0.4
- 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
4.0.2 — Docs, Example, Carthage support for Swift 4
-
Update project to support Swift 4.
@AYastrebov
#42 -
Fix typo in StoryboardBased examples.
@danshevluk
#42 -
Updated README instructions to Swift 3.
@neilkimmett
#41
4.0.1
- Added a tvOS target in the Example project.
- Carthage should now see the tvOS framework
4.0.0
Breaking changes
- The method
static func loadFromNib(owner:)
ofNibOwnerLoadable
has been replaced by instance methodfunc loadNibContent()
.
This is more consistent as we need an instance (owner) anyway, and also avoids possible crashes when used withUIView
subclasses
not implementing non-required initializersinit()
/init(frame:)
.
(Methodstatic func loadFromNib()
ofNibLoadable
is still unchanged).
@Skoti
#40 - The
storyboard
property ofStoryboardBased
andStoryboardSceneBased
protocols has been renamed tosceneStoryboard
to avoid conflicts.
@jakubgert
#33
Fixes
3.0.1
- Fix
instantiate()
implementation onStoryboardSceneBased
ViewControllers.
@jakubgert
#38 - Removed strict
NibReusable
protocol conforming inregister
functions.
You can now make aReusable
-only cell with aNibLoadable
subclass.
@nekrich
#37