buildar 0.1.0.1 → 0.1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/rakefile.rb +2 -2
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.0.
|
1
|
+
0.1.0.2
|
data/rakefile.rb
CHANGED
@@ -95,11 +95,11 @@ end
|
|
95
95
|
task "bump_#{v}" do
|
96
96
|
old_version = version
|
97
97
|
new_version = bump(v, old_version)
|
98
|
-
puts "bumping #{old_version}
|
98
|
+
puts "bumping #{old_version} to #{new_version}"
|
99
99
|
write_version new_version
|
100
100
|
if USE_GIT and GIT_COMMIT_VERSION
|
101
101
|
sh "git add VERSION"
|
102
|
-
sh "git commit -m 'rake bump_#{v}'"
|
102
|
+
sh "git commit -m 'rake bump_#{v} to #{new_version}'"
|
103
103
|
end
|
104
104
|
end
|
105
105
|
}
|