Skip to content

Commit 744ecfd

Browse files
committed
Release 0.5.0
1 parent 2e3c118 commit 744ecfd

File tree

4 files changed

+17
-21
lines changed

4 files changed

+17
-21
lines changed

.travis.yml

+7-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
language: elixir
2-
elixir:
3-
- 1.1.0
4-
- 1.2.0
5-
otp_release:
6-
- 17.4
7-
- 18.1
8-
env: MIX_ENV=test
9-
sudo: false # faster builds
10-
notifications:
11-
email: false
2+
matrix:
3+
include:
4+
- otp_release: 18.3
5+
elixir: 1.3.2
6+
- otp_release: 19.0
7+
elixir: 1.3.2
8+
sudo: false
129
script:
13-
- mix compile --warnings-as-errors
1410
- mix test
15-
- mix dogma

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
```elixir
2020
def deps do
21-
[{:ueberauth_facebook, "~> 0.4"}]
21+
[{:ueberauth_facebook, "~> 0.5"}]
2222
end
2323
```
2424

mix.exs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
defmodule UeberauthFacebook.Mixfile do
22
use Mix.Project
33

4-
@version "0.4.0"
4+
@version "0.5.0"
55
@url "https://github.com/ueberauth/ueberauth_facebook"
66

77
def project do
88
[app: :ueberauth_facebook,
99
version: @version,
1010
name: "Ueberauth Facebook Strategy",
1111
package: package,
12-
elixir: "~> 1.1",
12+
elixir: "~> 1.3",
1313
build_embedded: Mix.env == :prod,
1414
start_permanent: Mix.env == :prod,
1515
source_url: @url,
@@ -24,11 +24,11 @@ defmodule UeberauthFacebook.Mixfile do
2424
end
2525

2626
defp deps do
27-
[{:ueberauth, "~> 0.2"},
27+
[{:ueberauth, "~> 0.4"},
2828
{:oauth2, "0.6.0"},
29-
{:ex_doc, "~> 0.1", only: :dev},
30-
{:earmark, ">= 0.0.0", only: :dev},
31-
{:dogma, ">= 0.0.0", only: [:dev, :test]}]
29+
30+
{:ex_doc, "~> 0.2", only: :dev},
31+
{:earmark, ">= 0.0.0", only: :dev}]
3232
end
3333

3434
defp docs do

mix.lock

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
"httpoison": {:hex, :httpoison, "0.9.0", "68187a2daddfabbe7ca8f7d75ef227f89f0e1507f7eecb67e4536b3c516faddb", [:mix], [{:hackney, "~> 1.6.0", [hex: :hackney, optional: false]}]},
77
"idna": {:hex, :idna, "1.2.0", "ac62ee99da068f43c50dc69acf700e03a62a348360126260e87f2b54eced86b2", [:rebar3], []},
88
"metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], []},
9+
"mime": {:hex, :mime, "1.0.1", "05c393850524767d13a53627df71beeebb016205eb43bfbd92d14d24ec7a1b51", [:mix], []},
910
"mimerl": {:hex, :mimerl, "1.0.2", "993f9b0e084083405ed8252b99460c4f0563e41729ab42d9074fd5e52439be88", [:rebar3], []},
1011
"mimetype_parser": {:hex, :mimetype_parser, "0.1.2", "221d2d3f727e89d80de5e1610fc2ce444514aa56f873da1b8fc9c033143e5d6a", [:mix], []},
1112
"oauth2": {:hex, :oauth2, "0.6.0", "f3967aba3f358e64fb70046f659f04ea753d7a407ce032046dd048fc2e2e4be3", [:mix], [{:httpoison, "~> 0.7", [hex: :httpoison, optional: false]}, {:mimetype_parser, "~> 0.1", [hex: :mimetype_parser, optional: false]}, {:poison, "~> 1.3 or ~> 2.0", [hex: :poison, optional: false]}]},
12-
"plug": {:hex, :plug, "1.1.0", "69078a481549b81e879e169fbe099a509baf8d6a793db757f39f86258f91db07", [:mix], [{:cowboy, "~> 1.0", [hex: :cowboy, optional: true]}]},
13+
"plug": {:hex, :plug, "1.2.0", "496bef96634a49d7803ab2671482f0c5ce9ce0b7b9bc25bc0ae8e09859dd2004", [:mix], [{:cowboy, "~> 1.0", [hex: :cowboy, optional: true]}, {:mime, "~> 1.0", [hex: :mime, optional: false]}]},
1314
"poison": {:hex, :poison, "1.5.2", "560bdfb7449e3ddd23a096929fb9fc2122f709bcc758b2d5d5a5c7d0ea848910", [:mix], []},
1415
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.0", "edee20847c42e379bf91261db474ffbe373f8acb56e9079acb6038d4e0bf414f", [:rebar, :make], []},
1516
"ssl_verify_hostname": {:hex, :ssl_verify_hostname, "1.0.5", "2e73e068cd6393526f9fa6d399353d7c9477d6886ba005f323b592d389fb47be", [:make], []},
16-
"ueberauth": {:hex, :ueberauth, "0.2.0", "9160c601b468c6692462a56be7ad8890d1a2d84519d7d9c4541da5b07d6495e1", [:mix], [{:plug, "~> 1.0", [hex: :plug, optional: false]}]}}
17+
"ueberauth": {:hex, :ueberauth, "0.4.0", "bc72d5e5a7bdcbfcf28a756e34630816edabc926303bdce7e171f7ac7ffa4f91", [:mix], [{:plug, "~> 1.2", [hex: :plug, optional: false]}]}}

0 commit comments

Comments
 (0)