1.1.1: Saving us from ourselves
This release adds a protective spell compiler annotation to ensure that flatMap
isn't used where map
should be used. This is to prevent the Swift compiler from "helping" and coercing functions of the type A -> B
to A -> B?
and causing a segfault.