diff --git a/CHANGELOG.md b/CHANGELOG.md index d387364..b005228 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## v0.13.0 2022-10-24 + +### Added + +- [Braintree.Webhook] Allow passing options to webhook parser/validator, similar + to other API functions. + +- [Braintree.Plan] Expand plan functionality with `delete`, improved guard + clauses, and better response code formatting. + +- [Braintree.Customer] Support ACH Direct Debit payment methods. + +### Fixed + +- [Braintree.HTTP] Fix error in response type specification. + + This typespec error wasn't caught given the current dialyzer settings, but + could cause issues for clients expecting things like `{:error, :not_found}`. + ## v0.12.1 2021-11-18 ### Fixed diff --git a/README.md b/README.md index 12e12df..37804e8 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Add braintree to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:braintree, "~> 0.12"}] + [{:braintree, "~> 0.13"}] end ``` diff --git a/mix.exs b/mix.exs index 89dcacc..21f91e8 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Braintree.Mixfile do use Mix.Project - @version "0.12.1" + @version "0.13.0" def project do [