From 13fa465326c930bb4e9ed24ad50c336fc51b10b8 Mon Sep 17 00:00:00 2001 From: Daniel Neighman Date: Sat, 28 Nov 2015 19:27:34 -0800 Subject: [PATCH] Bump to 0.2.0 --- CHANGELOG.md | 3 +++ README.md | 2 +- mix.exs | 6 +++--- 3 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..87099e8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +# v 0.2.0 + +* Bump to follow Ueberauth 0.2.0 diff --git a/README.md b/README.md index 7f5c84c..84776d8 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ ```elixir def deps do - [{:ueberauth_slack, "~> 0.1"}] + [{:ueberauth_slack, "~> 0.2"}] end ``` diff --git a/mix.exs b/mix.exs index 3757379..f084bdf 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule UeberauthSlack.Mixfile do use Mix.Project - @version "0.1.0" + @version "0.2.0" def project do [app: :ueberauth_slack, @@ -19,13 +19,13 @@ defmodule UeberauthSlack.Mixfile do end def application do - [applications: [:logger]] + [applications: [:logger, :ueberauth, :oauth2]] end defp deps do [ {:oauth2, "~> 0.5"}, - {:ueberauth, "~>0.1"}, + {:ueberauth, "~>0.2"}, # Docs dependencies {:earmark, "~> 0.1", only: :dev},