1.0 - Breaking changes!
- Instead of raising errors we now return tuples from our library functions.
{:ok, boards} = ExTrello.boards()
{:error, %ExTrello.Error{code: code, message: message}} = ExTrello.get("/a_path_that_doesnt_exist")
This is a breaking change for anyone using a `0.x.x` version in their applications.
- Dialyzer errors have been fixed and only warnings from other libraries are emitted now.
- Checklists model has been added and some convenience functions along with it.