diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ab3c78c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +# v 0.2.0 + +* Bump revision to follow ueberauth 0.2.0 diff --git a/README.md b/README.md index 3e52734..6d50748 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ _Note_: Sessions are required for this strategy. ```elixir def deps do - [{:ueberauth_twitter, "~> 0.1"}, + [{:ueberauth_twitter, "~> 0.2"}, {:oauth, github: "tim/erlang-oauth"}] end ``` diff --git a/mix.exs b/mix.exs index 5bb6596..ebb0bca 100644 --- a/mix.exs +++ b/mix.exs @@ -1,8 +1,8 @@ defmodule UeberauthTwitter.Mixfile do use Mix.Project - @version "0.1.0" - @url "https://github.com/doomspork/ueberauth_twitter" + @version "0.2.0" + @url "https://github.com/ueberauth/ueberauth_twitter" def project do [app: :ueberauth_twitter, @@ -24,7 +24,7 @@ defmodule UeberauthTwitter.Mixfile do end defp deps do - [{:ueberauth, "~> 0.1"}, + [{:ueberauth, "~> 0.2"}, {:oauth, github: "tim/erlang-oauth"}, {:httpoison, "~> 0.7"}, {:ex_doc, "~> 0.1", only: :dev},