Packages

This is a simple mix task to version bump a mix project.

Current section

Files

Jump to
mix_bump lib mix-bump git.ex
Raw

lib/mix-bump/git.ex

defmodule MixBump.Git do
alias MixBump.Command
def commit(message) do
Command.execute("git commit -o mix.exs -m '#{message}' -q")
end
def tag(name) do
Command.execute("git tag #{name}")
end
end