Prefix version tags with "v".

This makes them stand out as versions a bit more.
This commit is contained in:
Yorick Peterse 2014-11-17 22:42:16 +01:00
parent ad4f650c5d
commit c253254e24
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}" #{version}}
sh %Q{git tag -a -m "Version #{version}" v#{version}}
end