Skip to content

1.0 - Breaking changes!

Compare
Choose a tag to compare
@yammine yammine released this 23 Sep 03:37
· 9 commits to master since this release
  1. 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.
  1. Dialyzer errors have been fixed and only warnings from other libraries are emitted now.
  2. Checklists model has been added and some convenience functions along with it.