From d9503663412893bb0ede5e1601bb824d23def726 Mon Sep 17 00:00:00 2001 From: Michael Williams Date: Fri, 29 Apr 2016 00:55:13 -0700 Subject: [PATCH] Don't use Git tags to identify release. (Breaking on install?) --- mix.exs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/mix.exs b/mix.exs index 87bae6d..0b033e6 100644 --- a/mix.exs +++ b/mix.exs @@ -32,12 +32,7 @@ defmodule Blazon.Mixfile do defp documentation_url, do: "https://github.com/mtwilliams/blazon" defp version do - case System.cmd("git", ["describe", "--tags"], stderr_to_stdout: true) do - {tag, 0} -> - String.strip(tag) - _ -> - "0.0.0" - end + "0.1.3" end defp elixirc_paths(:test), do: ~w(test/support) ++ elixirc_paths