We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5404ab commit 5683895Copy full SHA for 5683895
mix.exs
@@ -1,10 +1,12 @@
1
defmodule Excoding.MixProject do
2
use Mix.Project
3
4
+ @version "0.1.1"
5
+
6
def project do
7
[
8
app: :excoding,
- version: "0.1.0",
9
+ version: @version,
10
elixir: "~> 1.9",
11
start_permanent: Mix.env() == :prod,
12
deps: deps(),
@@ -36,7 +38,7 @@ defmodule Excoding.MixProject do
36
38
maintainers: ["Kevin Seidel"],
37
39
licenses: ["MIT"],
40
links: %{"GitHub" => "https://github.com/moogle19/excoding"},
- files: ~w(.formatter.exs mix.exs README.md lib native)
41
+ files: ~w(.formatter.exs mix.exs README.md lib native checksum-*.exs)
42
]
43
end
44
0 commit comments