Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarkow committed Jan 21, 2020
1 parent 521e37f commit 3d9e2dd
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,30 @@ defmodule EctoRanked.Mixfile do
use Mix.Project

def project do
[app: :ecto_ranked,
version: "0.4.2",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
elixirc_paths: elixirc_paths(Mix.env),
docs: [main: "readme", extras: ["README.md"]],
aliases: aliases(),
package: package(),
deps: deps()]
[
app: :ecto_ranked,
version: "0.5.0",
elixir: "~> 1.4",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
docs: [main: "readme", extras: ["README.md"]],
aliases: aliases(),
package: package(),
deps: deps()
]
end

defp package do
[description: "Add and maintain rankings to sort your data with Ecto",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Dylan Markow"],
licenses: ["MIT"],
links: %{github: "https://github.com/dmarkow/ecto_ranked"}
[
description: "Add and maintain rankings to sort your data with Ecto",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Dylan Markow"],
licenses: ["MIT"],
links: %{github: "https://github.com/dmarkow/ecto_ranked"}
]
end

# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
Expand All @@ -47,8 +51,10 @@ defmodule EctoRanked.Mixfile do
#
# Type "mix help deps" for more examples and options
defp deps do
[{:ecto_sql, "~> 3.0"},
{:postgrex, "~> 0.14", only: :test},
{:ex_doc, "~> 0.14", only: :dev, runtime: false}]
[
{:ecto_sql, "~> 3.0"},
{:postgrex, "~> 0.14", only: :test},
{:ex_doc, "~> 0.14", only: :dev, runtime: false}
]
end
end

0 comments on commit 3d9e2dd

Please sign in to comment.