Bump version to rc1

This commit is contained in:
David Heinemeier Hansson 2013-04-29 08:29:18 -07:00
parent 9848e8916f
commit 1ec64297f9
8 changed files with 8 additions and 8 deletions

View File

@ -1 +1 @@
4.0.0.beta1
4.0.0.rc1

View File

@ -1,7 +1,7 @@
module ActionMailer
# Returns the version of the currently loaded ActionMailer as a Gem::Version
def self.version
Gem::Version.new "4.0.0.beta1"
Gem::Version.new "4.0.0.rc1"
end
module VERSION #:nodoc:

View File

@ -1,7 +1,7 @@
module ActionPack
# Returns the version of the currently loaded ActionPack as a Gem::Version
def self.version
Gem::Version.new "4.0.0.beta1"
Gem::Version.new "4.0.0.rc1"
end
module VERSION #:nodoc:

View File

@ -1,7 +1,7 @@
module ActiveModel
# Returns the version of the currently loaded ActiveModel as a Gem::Version
def self.version
Gem::Version.new "4.0.0.beta1"
Gem::Version.new "4.0.0.rc1"
end
module VERSION #:nodoc:

View File

@ -1,7 +1,7 @@
module ActiveRecord
# Returns the version of the currently loaded ActiveRecord as a Gem::Version
def self.version
Gem::Version.new "4.0.0.beta1"
Gem::Version.new "4.0.0.rc1"
end
module VERSION #:nodoc:

View File

@ -1,7 +1,7 @@
module ActiveSupport
# Returns the version of the currently loaded ActiveSupport as a Gem::Version
def self.version
Gem::Version.new "4.0.0.beta1"
Gem::Version.new "4.0.0.rc1"
end
module VERSION #:nodoc:

View File

@ -3,7 +3,7 @@ module Rails
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "beta1"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -3,7 +3,7 @@ module Rails
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "beta1"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end