Skip to content

Commit 84da101

Browse files
committed
Bumped to 0.9.0.beta.0
1 parent b8a1c4c commit 84da101

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ end
4545

4646
# Determine the current version of the software
4747

48-
if `ruby -Ilib ./bin/rake --version` =~ /rake, version ([0-9.]+)$/
48+
if `ruby -Ilib ./bin/rake --version` =~ /rake, version ([0-9a-z.]+)$/
4949
CURRENT_VERSION = $1
5050
else
5151
CURRENT_VERSION = "0.0.0"

lib/rake/version.rb

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ module Rake
22
module Version
33
NUMBERS = [
44
MAJOR = 0,
5-
MINOR = 8,
6-
BUILD = 99,
7-
BETA = 5,
5+
MINOR = 9,
6+
BUILD = 0,
7+
BETA = 'beta',
8+
BETANUM = 0,
89
]
910
end
1011
VERSION = Version::NUMBERS.join('.')

0 commit comments

Comments
 (0)