Skip to content

Commit a757946

Browse files
committed
Release v0.13.0
1 parent c78e1a1 commit a757946

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v0.13.0 2022-10-24
2+
3+
### Added
4+
5+
- [Braintree.Webhook] Allow passing options to webhook parser/validator, similar
6+
to other API functions.
7+
8+
- [Braintree.Plan] Expand plan functionality with `delete`, improved guard
9+
clauses, and better response code formatting.
10+
11+
- [Braintree.Customer] Support ACH Direct Debit payment methods.
12+
13+
### Fixed
14+
15+
- [Braintree.HTTP] Fix error in response type specification.
16+
17+
This typespec error wasn't caught given the current dialyzer settings, but
18+
could cause issues for clients expecting things like `{:error, :not_found}`.
19+
120
## v0.12.1 2021-11-18
221

322
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add braintree to your list of dependencies in `mix.exs`:
1515

1616
```elixir
1717
def deps do
18-
[{:braintree, "~> 0.12"}]
18+
[{:braintree, "~> 0.13"}]
1919
end
2020
```
2121

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Braintree.Mixfile do
22
use Mix.Project
33

4-
@version "0.12.1"
4+
@version "0.13.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)