Add VERSION file

This commit is contained in:
Marcel Otto 2017-08-10 23:14:34 +02:00
parent bc3d154399
commit 91550909bd
2 changed files with 3 additions and 2 deletions

1
VERSION Normal file
View file

@ -0,0 +1 @@
0.2.0-dev

View file

@ -3,7 +3,7 @@ defmodule RDF.Mixfile do
@repo_url "https://github.com/marcelotto/rdf-ex"
@version "0.1.1"
@version File.read!("VERSION") |> String.trim
def project do
[
@ -40,7 +40,7 @@ defmodule RDF.Mixfile do
maintainers: ["Marcel Otto"],
licenses: ["MIT"],
links: %{"GitHub" => @repo_url},
files: ~w[lib src priv mix.exs README.md LICENSE.md]
files: ~w[lib src priv mix.exs README.md LICENSE.md VERSION]
]
end