Prefix version tags with "v".
This makes them stand out as versions a bit more.
This commit is contained in:
parent
ad4f650c5d
commit
c253254e24
|
@ -2,5 +2,5 @@ desc 'Creates a Git tag for the current version'
|
||||||
task :tag do
|
task :tag do
|
||||||
version = Oga::VERSION
|
version = Oga::VERSION
|
||||||
|
|
||||||
sh %Q{git tag -a -m "Version #{version}" #{version}}
|
sh %Q{git tag -a -m "Version #{version}" v#{version}}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue