buildar 0.1.0.1 → 0.1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
}
|