This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
Releases: iZettle/Lift
Releases · iZettle/Lift
Lift 2.0.1
- Fixed a bug with forwarding the jar context when using some combinations of nested containers.
Lift 2.0
- Added support for Swift 4.1 conditional conformances by making
Optional
,Array
andDictionary
to optionally conform toJarElement
. - Conditional conformances make it easier to build nested jars without explicitly creating jars:
Previouslylet jar: Jar = ["optional": Jar(optional), "array": Jar(array)]
can now be written as:let jar: Jar = ["optional": optional, "array": array]
. - Removed all versions of
Jar
's map() methods as these do not play well with the adding of conditional conformances and you can easily get the same functionally without them.
Lift 1.0.1
Changes
- Removed references to non-existing files in Xcode project (#6)
Lift v1.0 released!
Merge pull request #5 from iZettle/swift-package Update Swift PackageDescription to v4 manifest format