Noze.io v0.6.4 Release Notes

Release Date: 2018-07-25 // over 5 years ago
  • 🚀 This release adds changes to please current builds of Swift 4.2, e.g. as delivered in Xcode 10 beta 4.

    There is only one major change in the API - socket structs like sockaddr_in or addr_in do not carry a custom initialiser anymore. That is a:

    let a = sockaddr_in()
    

    Is not properly initialising the address anymore, instead it just returns a 0-cleared value. Instead, use one of the other convenience initialisers we provide or make, like so:

    let a = sockaddr_in.make()
    

    This affected no user code in Noze.io itself, so you probably won't hit it either.