diff --git a/CHANGELOG.md b/CHANGELOG.md index 3952618..95d65c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v0.9.0](https://github.com/danielberkompas/ex_twilio/tree/v0.9.0) (2021-02-04) + +[Full Changelog](https://github.com/danielberkompas/ex_twilio/compare/v0.8.2...v0.9.0) + +**Merged pull requests:** + +- Replace Poison with Jason [\#143](https://github.com/danielberkompas/ex_twilio/pull/143) ([tomciopp](https://github.com/tomciopp)) +- Allow request options to be configured for HTTPoison/hackney Twilio requests [\#141](https://github.com/danielberkompas/ex_twilio/pull/141) ([paulanthonywilson](https://github.com/paulanthonywilson)) + ## [v0.8.2](https://github.com/danielberkompas/ex_twilio/tree/v0.8.2) (2020-10-01) [Full Changelog](https://github.com/danielberkompas/ex_twilio/compare/v0.8.1...v0.8.2) @@ -25,7 +34,7 @@ - Update participant resource [\#140](https://github.com/danielberkompas/ex_twilio/pull/140) ([rrebane](https://github.com/rrebane)) - Add Rooms resource [\#139](https://github.com/danielberkompas/ex_twilio/pull/139) ([dshvimer2](https://github.com/dshvimer2)) -- Fix typos [\#136](https://github.com/danielberkompas/ex_twilio/pull/136) ([SherSpock](https://github.com/SherSpock)) +- Fix typos [\#136](https://github.com/danielberkompas/ex_twilio/pull/136) ([yakryder](https://github.com/yakryder)) - Add voice grant [\#134](https://github.com/danielberkompas/ex_twilio/pull/134) ([ostap0207](https://github.com/ostap0207)) ## [v0.8.1](https://github.com/danielberkompas/ex_twilio/tree/v0.8.1) (2019-12-06) @@ -153,7 +162,7 @@ - 76 - Subaccounts handling [\#78](https://github.com/danielberkompas/ex_twilio/pull/78) ([andrewshatnyy](https://github.com/andrewshatnyy)) - Upgrade Joken to 1.4.1 [\#74](https://github.com/danielberkompas/ex_twilio/pull/74) ([joshuafleck](https://github.com/joshuafleck)) -- Replace 'accound' with 'account' in capability.ex [\#73](https://github.com/danielberkompas/ex_twilio/pull/73) ([SherSpock](https://github.com/SherSpock)) +- Replace 'accound' with 'account' in capability.ex [\#73](https://github.com/danielberkompas/ex_twilio/pull/73) ([yakryder](https://github.com/yakryder)) - Adds Update API action to Conference resource. [\#71](https://github.com/danielberkompas/ex_twilio/pull/71) ([m4ttsch](https://github.com/m4ttsch)) ## [v0.3.0](https://github.com/danielberkompas/ex_twilio/tree/v0.3.0) (2017-01-20) diff --git a/mix.exs b/mix.exs index 17aae77..9e1a34e 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule ExTwilio.Mixfile do def project do [ app: :ex_twilio, - version: "0.8.2", + version: "0.9.0", elixir: "~> 1.2", name: "ExTwilio", description: "Twilio API library for Elixir",