diff --git a/Changelog.md b/CHANGELOG.md similarity index 100% rename from Changelog.md rename to CHANGELOG.md diff --git a/mix.exs b/mix.exs index e1aa3fc..6f0efdd 100644 --- a/mix.exs +++ b/mix.exs @@ -4,16 +4,18 @@ defmodule Absinthe.Ecto.Mixfile do @version "0.1.3" def project do - [app: :absinthe_ecto, - version: @version, - elixir: "~> 1.3", - build_embedded: Mix.env == :prod, - start_permanent: Mix.env == :prod, - elixirc_paths: elixirc_paths(Mix.env), - package: package(), - source_url: "https://github.com/absinthe-graphql/absinthe_ecto", - docs: [source_ref: "v#{@version}", main: "Absinthe.Ecto"], - deps: deps()] + [ + app: :absinthe_ecto, + version: @version, + elixir: "~> 1.3", + build_embedded: Mix.env == :prod, + start_permanent: Mix.env == :prod, + elixirc_paths: elixirc_paths(Mix.env), + package: package(), + source_url: "https://github.com/absinthe-graphql/absinthe_ecto", + docs: [source_ref: "v#{@version}", main: "Absinthe.Ecto"], + deps: deps() + ] end # Configuration for the OTP application @@ -24,11 +26,17 @@ defmodule Absinthe.Ecto.Mixfile do end defp package do - [description: "GraphQL helpers for Absinthe", - files: ["lib", "priv", "mix.exs", "README*"], - maintainers: ["Bruce Williams", "Ben Wilson"], - licenses: ["MIT"], - links: %{github: "https://github.com/absinthe-graphql/absinthe_ecto"}] + [ + description: "GraphQL helpers for Absinthe", + files: ["lib", "priv", "mix.exs", "README*"], + maintainers: ["Bruce Williams", "Ben Wilson"], + licenses: ["MIT"], + links: %{ + "Website": "https://absinthe-graphql.org", + "Changelog": "https://github.com/absinthe-graphql/absinthe_ecto/blob/master/CHANGELOG.md", + "GitHub": "https://github.com/absinthe-graphql/absinthe_ecto" + } + ] end # Dependencies can be Hex packages: