Decodable v0.6.0 Release Notes

Release Date: 2017-09-29 // over 6 years ago
  • 🚀 This release contains no other changes than updated project settings to target Swift 4.

    Coming from earlier versions you will be faced with errors like 'Decodable' is ambiguous for type lookup in this context. Unfortunately you have to use the following import-syntax to get around it:

    import protocol Decodable.Decodable
    

    where you can also import other structs and enums as required.


Previous changes from v0.5

  • Some significant changes:

    • 0️⃣ #108 Every default implementation of Decodable can be overridden
    • #79 Errors are once again enums
    • #117 Any instead of AnyObject
    • #101, #99 New KeyPath ad OptionalKeyPath structs.

    👀 Please see v0.5.0 migration guide and the new readme for more information.