We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8a1c4c commit 84da101Copy full SHA for 84da101
Rakefile
@@ -45,7 +45,7 @@ end
45
46
# Determine the current version of the software
47
48
-if `ruby -Ilib ./bin/rake --version` =~ /rake, version ([0-9.]+)$/
+if `ruby -Ilib ./bin/rake --version` =~ /rake, version ([0-9a-z.]+)$/
49
CURRENT_VERSION = $1
50
else
51
CURRENT_VERSION = "0.0.0"
lib/rake/version.rb
@@ -2,9 +2,10 @@ module Rake
2
module Version
3
NUMBERS = [
4
MAJOR = 0,
5
- MINOR = 8,
6
- BUILD = 99,
7
- BETA = 5,
+ MINOR = 9,
+ BUILD = 0,
+ BETA = 'beta',
8
+ BETANUM = 0,
9
]
10
end
11
VERSION = Version::NUMBERS.join('.')
0 commit comments