Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
keathley committed Apr 16, 2019
1 parent 790c623 commit a010fdb
Showing 1 changed file with 24 additions and 11 deletions.
35 changes: 24 additions & 11 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@ defmodule Alchemy.Mixfile do
use Mix.Project

def project do
[app: :alchemy,
description: "Perform experiments in production",
version: "0.2.0",
elixir: "~> 1.7",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package(),
deps: deps()]
[
app: :alchemy,
description: "Perform experiments in production",
version: "0.3.0",
elixir: "~> 1.7",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package(),
deps: deps(),
docs: docs(),
]
end

def application do
Expand All @@ -25,9 +28,19 @@ defmodule Alchemy.Mixfile do
end

defp package do
[maintainers: ["Chris Keathley"],
licenses: ["MIT"],
links: %{github: "https://github.com/keathley/alchemy"}]
[
maintainers: ["Chris Keathley"],
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
links: %{github: "https://github.com/keathley/alchemy"}
]
end

defp docs do
[
extras: ["README.md"],
main: "readme",
source_url: "https://github.com/keathley/alchemy",
]
end
end

0 comments on commit a010fdb

Please sign in to comment.