Changed tag message from "Version" to "Release"

This keeps it consistent with the underlying commit messages.
This commit is contained in:
Yorick Peterse 2015-04-15 09:28:50 +02:00
parent bc9b9bc953
commit 4c1e9a0be8
1 changed files with 1 additions and 1 deletions

View File

@ -2,5 +2,5 @@ desc 'Creates a Git tag for the current version'
task :tag do
version = Oga::VERSION
sh %Q{git tag -a -m "Version #{version}" v#{version}}
sh %Q{git tag -a -m "Release #{version}" v#{version}}
end