Skip to content

0.5.0

Compare
Choose a tag to compare
@stephencelis stephencelis released this 10 Jun 13:33
· 73 commits to main since this release
  • Fixed: diffs now differentiate when value dumps the same output, but the type differs.

    let xs: [Any] = [Float(42)]
    let ys: [Any] = [Double(42)]
    diff(xs, ys)
    //  [
    // -  [0]: 42 as Float
    // +  [0]: 42 as Double
    //  ]