Skip to content

Commit

Permalink
Bumped to 0.9.0.beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jimweirich committed Feb 23, 2011
1 parent b8a1c4c commit 84da101
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ end

# Determine the current version of the software

if `ruby -Ilib ./bin/rake --version` =~ /rake, version ([0-9.]+)$/
if `ruby -Ilib ./bin/rake --version` =~ /rake, version ([0-9a-z.]+)$/
CURRENT_VERSION = $1
else
CURRENT_VERSION = "0.0.0"
Expand Down
7 changes: 4 additions & 3 deletions lib/rake/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ module Rake
module Version
NUMBERS = [
MAJOR = 0,
MINOR = 8,
BUILD = 99,
BETA = 5,
MINOR = 9,
BUILD = 0,
BETA = 'beta',
BETANUM = 0,
]
end
VERSION = Version::NUMBERS.join('.')
Expand Down

0 comments on commit 84da101

Please sign in to comment.