Skip to content

v.1.7.0

Compare
Choose a tag to compare
@caibirdme caibirdme released this 10 Mar 14:47
· 9 commits to master since this release

Add

  • when value is a slice, in keyword is omitable
map[string]interface{}{
  "foo in": []int{1,2,3},
}

// equals to
map[string]interface{}{
  "foo": []int{1,2,3},
}

Fix

  • if an object implements sql.Scanner, it'll take over the Scan job