From 3f79b20c1dc33382d76766c2fb3137a5891a2f8e Mon Sep 17 00:00:00 2001 From: Sonny Scroggin Date: Wed, 5 Oct 2016 17:24:47 -0500 Subject: [PATCH] update version and changelog --- CHANGELOG.md | 7 +++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b71f099..f2a4589 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.8.0 (2016-10-05) + +### Bug Fixes + +* Fixed an issue where checking the `content-type` was defaulting to + `application/json` causing Poison to explode. + ## v0.7.0 (2016-08-16) ### Improvements diff --git a/README.md b/README.md index ab489df..2721030 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ end defp deps do # Add the dependency - [{:oauth2, "~> 0.7"}] + [{:oauth2, "~> 0.8"}] end ``` diff --git a/mix.exs b/mix.exs index 4454346..06fe129 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule OAuth2.Mixfile do use Mix.Project - @version "0.7.0" + @version "0.8.0" def project do [app: :oauth2,