From 1cfa3e82a65389d91a3955ed55a53b92c84fe5b9 Mon Sep 17 00:00:00 2001 From: Chad Gorshing Date: Tue, 13 Feb 2018 12:29:42 -0600 Subject: [PATCH] Updated dependencies and corrected minor typo (#20) * Updated deps that some what follows other ueberauth strategies versions. * Corrected simple typo --- README.md | 2 +- mix.exs | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 11e4c91..97a0926 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ _Note_: Sessions are required for this strategy. end ``` -1. You controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses. +1. Your controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses. For an example implementation see the [Überauth Example](https://github.com/ueberauth/ueberauth_example) application. diff --git a/mix.exs b/mix.exs index 8329ba2..0dda32e 100644 --- a/mix.exs +++ b/mix.exs @@ -25,15 +25,15 @@ defmodule UeberauthTwitter.Mixfile do defp deps do [ - {:httpoison, "~> 0.7"}, + {:httpoison, "~> 0.13"}, {:oauther, "~> 1.1"}, - {:poison, "~> 1.3 or ~> 2.0"}, - {:ueberauth, "~> 0.2"}, + {:poison, "~> 3.0"}, + {:ueberauth, "~> 0.4"}, # dev/test dependencies {:earmark, ">= 0.0.0", only: :dev}, - {:ex_doc, "~> 0.1", only: :dev}, - {:credo, "~> 0.5", only: [:dev, :test]} + {:ex_doc, "~> 0.18", only: :dev}, + {:credo, "~> 0.8", only: [:dev, :test]} ] end