From 2ef6d8aaf09ae05689282b5cd3d11da6506ab1b4 Mon Sep 17 00:00:00 2001 From: Daniel Neighman Date: Sat, 28 Nov 2015 19:30:05 -0800 Subject: [PATCH] Bump to 0.2.0 to follow ueberauth --- 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..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},