GitAutoVersion
This is a super simple way to version your elixir applications with git tags using only one line of code.
Installation
In your mix.exs
file:
def deps do
{:git_auto_version, "~> 0.2"}
end
Also in your mix.exs
file:
def project do
[
# ...
version: GitAutoVersion.version()
]
end
And that’s it!