GRDB.swift v0.98.0 Release Notes

  • ๐Ÿš€ Released December 16, 2016

    ๐Ÿ†• New

    • ๐Ÿ“š StatementArguments can be concatenated with the append(contentsOf:) method and the +, &+, += operators (documentation)

    • Rows expressed as dictionary literals now preserve column ordering, and allow duplicated column names:

      let row: Row = ["foo": 1, "foo": Date(), "baz": nil]
      print(row)
      // Prints <Row foo:1 foo:"2016-12-16 13:19:49.230" baz:NULL>