hjsonschema v0.6 Release Notes

  • Break the API so the library doesn't induce boolean blindness.

    ๐Ÿ”„ Change validate was: Schema -> Value -> Vector ValErr now: Schema -> Value -> Either (Vector ValErr) Value

    ๐Ÿ”„ Change Schema was: type Schema = Vector Validator now: newtype Schema = Schema { _unSchema :: [Validator] }