Skip to content

Commit 3e8c76e

Browse files
committed
Release 0.4
1 parent 449a5b1 commit 3e8c76e

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v 0.4
2+
3+
* Allow `:state` param to be configured
4+
15
# v 0.3.2
26

37
* Fix support for auth_type

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.3"}]
21+
[{:ueberauth_facebook, "~> 0.4"}]
2222
end
2323
```
2424

mix.exs

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

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

77
def project do
@@ -32,11 +32,7 @@ defmodule UeberauthFacebook.Mixfile do
3232
end
3333

3434
defp docs do
35-
[extras: docs_extras, main: "extra-readme"]
36-
end
37-
38-
defp docs_extras do
39-
["README.md"]
35+
[main: "README.md"]
4036
end
4137

4238
defp description do

mix.lock

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
%{"certifi": {:hex, :certifi, "0.1.1"},
2-
"dogma": {:hex, :dogma, "0.0.11"},
3-
"earmark": {:hex, :earmark, "0.1.19"},
4-
"ex_doc": {:hex, :ex_doc, "0.10.0"},
5-
"hackney": {:hex, :hackney, "1.4.4"},
6-
"httpoison": {:hex, :httpoison, "0.8.0"},
7-
"idna": {:hex, :idna, "1.0.2"},
8-
"mimerl": {:hex, :mimerl, "1.0.0"},
9-
"mimetype_parser": {:hex, :mimetype_parser, "0.1.0"},
10-
"oauth2": {:hex, :oauth2, "0.5.0"},
11-
"plug": {:hex, :plug, "1.1.0"},
12-
"poison": {:hex, :poison, "1.5.0"},
13-
"ssl_verify_hostname": {:hex, :ssl_verify_hostname, "1.0.5"},
14-
"ueberauth": {:hex, :ueberauth, "0.2.0"}}
1+
%{"certifi": {:hex, :certifi, "0.1.1", "7fd287d0fea2d65e99f5bef3b8573fa46f4310078709be969adcbc93a580ee73", [:rebar], []},
2+
"dogma": {:hex, :dogma, "0.0.11", "1396bfe10a962b5c5b0468eba6eb3be85d693d55f2d698fda29660a059eb2180", [:mix], [{:poison, "~> 1.0", [hex: :poison, optional: false]}]},
3+
"earmark": {:hex, :earmark, "0.1.19", "ffec54f520a11b711532c23d8a52b75a74c09697062d10613fa2dbdf8a9db36e", [:mix], []},
4+
"ex_doc": {:hex, :ex_doc, "0.10.0", "f49c237250b829df986486b38f043e6f8e19d19b41101987f7214543f75947ec", [:mix], [{:earmark, "~> 0.1.17 or ~> 0.2", [hex: :earmark, optional: true]}]},
5+
"hackney": {:hex, :hackney, "1.4.4", "c4e9fd8d77c79f03c09712500780077aeb6cdfe7bab3f4c56cb87d337a7526d7", [:rebar3], [{:ssl_verify_hostname, "1.0.5", [hex: :ssl_verify_hostname, optional: false]}, {:mimerl, "1.0.0", [hex: :mimerl, optional: false]}, {:idna, "1.0.2", [hex: :idna, optional: false]}, {:certifi, "0.1.1", [hex: :certifi, optional: false]}]},
6+
"httpoison": {:hex, :httpoison, "0.8.0", "52a958d40b2aa46da418cdf6d8dfd82ba83e94d5e60920dfa5f40c05b34fe073", [:mix], [{:hackney, "~> 1.4.4", [hex: :hackney, optional: false]}]},
7+
"idna": {:hex, :idna, "1.0.2", "397e3d001c002319da75759b0a81156bf11849c71d565162436d50020cb7265e", [:make], []},
8+
"mimerl": {:hex, :mimerl, "1.0.0", "b9813e0fa1019420da8c8001748d7c34791fd49464cb28762bc22638b1ff6198", [:rebar3], []},
9+
"mimetype_parser": {:hex, :mimetype_parser, "0.1.0", "069fcf6aa98b1eb90d879b3035f3392acecef1ee212ddc59fa930a6cc15d85e3", [:mix], []},
10+
"oauth2": {:hex, :oauth2, "0.5.0", "bb46ad20f060540c2726c993b4661a9f89b7acec5568ceae7009560358fbc765", [:mix], [{:poison, "~> 1.3", [hex: :poison, optional: false]}, {:mimetype_parser, "~> 0.1", [hex: :mimetype_parser, optional: false]}, {:httpoison, "~> 0.7", [hex: :httpoison, optional: false]}]},
11+
"plug": {:hex, :plug, "1.1.0", "69078a481549b81e879e169fbe099a509baf8d6a793db757f39f86258f91db07", [:mix], [{:cowboy, "~> 1.0", [hex: :cowboy, optional: true]}]},
12+
"poison": {:hex, :poison, "1.5.0", "f2f4f460623a6f154683abae34352525e1d918380267cdbd949a07ba57503248", [:mix], []},
13+
"ssl_verify_hostname": {:hex, :ssl_verify_hostname, "1.0.5", "2e73e068cd6393526f9fa6d399353d7c9477d6886ba005f323b592d389fb47be", [:make], []},
14+
"ueberauth": {:hex, :ueberauth, "0.2.0", "9160c601b468c6692462a56be7ad8890d1a2d84519d7d9c4541da5b07d6495e1", [:mix], [{:plug, "~> 1.0", [hex: :plug, optional: false]}]}}

0 commit comments

Comments
 (0)