Skip to content

Commit

Permalink
Follow ueberauth into 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neighman committed Nov 29, 2015
1 parent 671bf63 commit a6d4151
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# v 0.2.0

* Bump the version to follow the Ueberauth release.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

```elixir
def deps do
[{:ueberauth_identity, "~> 0.1"}]
[{:ueberauth_identity, "~> 0.2"}]
end
```

Expand Down
13 changes: 7 additions & 6 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
defmodule UeberauthIdentity.Mixfile do
use Mix.Project

@version "0.1.3"
@version "0.2.0"
@url "https://github.com/ueberauth/ueberauth_identity"

def project do
[app: :ueberauth_identity,
Expand All @@ -11,20 +12,20 @@ defmodule UeberauthIdentity.Mixfile do
elixir: "~> 1.1",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
source_url: "https://github.com/hassox/ueberauth_identity",
homepage_url: "https://github.com/hassox/ueberauth_identity",
source_url: @url,
homepage_url: @url,
description: description,
deps: deps,
docs: docs]
end

def application do
[applications: [:logger]]
[applications: [:logger, :ueberauth]]
end

defp deps do
[
{:ueberauth, "~> 0.1"},
{:ueberauth, "~> 0.2"},
{:plug, "~> 1.0"},

# docs dependencies
Expand All @@ -49,6 +50,6 @@ defmodule UeberauthIdentity.Mixfile do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Daniel Neighman"],
licenses: ["MIT"],
links: %{github: "https://github.com/hassox/ueberauth_identity"}]
links: %{github: @url}]
end
end

0 comments on commit a6d4151

Please sign in to comment.