purescript v0.6.1 Release Notes

Release Date: 2014-11-18 // over 9 years ago
  • ๐Ÿ’ฅ Breaking Changes

    • The body of a guarded expression must now be indented past the guard. For example, this is valid:
    positive n | n > 0 = true
    positive _ = false
    

    but this is not:

    positive n | n > 0
      = true
    positive _ = false
    

    ๐Ÿ†• New Features

    • ๐Ÿ‘ Type wildcards are now supported (#287, @paf31)

    โœจ Enhancements

    • ๐Ÿ‘ Allow unquoted keywords as key names in record literals (#606, @michaelficarra)
    • Import instances when referencing qualified values (#667, @garyb)
    • ๐Ÿ‘ Multiple guard clauses are now supported (#294, @paf31)
    • Type check let declarations immediately in psci (#615, @garyb)