From 91550909bd940a99f637878ac147dd87b6b23f22 Mon Sep 17 00:00:00 2001 From: Marcel Otto Date: Thu, 10 Aug 2017 23:14:34 +0200 Subject: [PATCH] Add VERSION file --- VERSION | 1 + mix.exs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 VERSION diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..70426f8 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.2.0-dev diff --git a/mix.exs b/mix.exs index e1d0352..814791b 100644 --- a/mix.exs +++ b/mix.exs @@ -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