Skip to content

Commit

Permalink
Merge branch 'release/0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Oct 24, 2019
2 parents d0868c1 + 80c25ad commit b96533e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/dev.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use Mix.Config
13 changes: 12 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ defmodule Eventful.MixProject do
def project do
[
app: :eventful,
version: "0.1.0",
version: "0.1.1",
elixir: "~> 1.8",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
package: package(),
deps: deps()
]
end
Expand All @@ -20,6 +21,16 @@ defmodule Eventful.MixProject do
]
end

defp package do
[
description: "Provide Event tracking for your Ecto Model",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Zack Siri"],
licenses: ["MIT"],
links: %{github: "https://github.com/zacksiri/eventful"}
]
end

defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]

Expand Down

0 comments on commit b96533e

Please sign in to comment.