Skip to content

Commit 1ec6429

Browse files
author
David Heinemeier Hansson
committed
Bump version to rc1
1 parent 9848e89 commit 1ec6429

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.0.beta1
1+
4.0.0.rc1

actionmailer/lib/action_mailer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActionMailer
22
# Returns the version of the currently loaded ActionMailer as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.0.beta1"
4+
Gem::Version.new "4.0.0.rc1"
55
end
66

77
module VERSION #:nodoc:

actionpack/lib/action_pack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActionPack
22
# Returns the version of the currently loaded ActionPack as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.0.beta1"
4+
Gem::Version.new "4.0.0.rc1"
55
end
66

77
module VERSION #:nodoc:

activemodel/lib/active_model/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActiveModel
22
# Returns the version of the currently loaded ActiveModel as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.0.beta1"
4+
Gem::Version.new "4.0.0.rc1"
55
end
66

77
module VERSION #:nodoc:

activerecord/lib/active_record/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActiveRecord
22
# Returns the version of the currently loaded ActiveRecord as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.0.beta1"
4+
Gem::Version.new "4.0.0.rc1"
55
end
66

77
module VERSION #:nodoc:

activesupport/lib/active_support/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActiveSupport
22
# Returns the version of the currently loaded ActiveSupport as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.0.beta1"
4+
Gem::Version.new "4.0.0.rc1"
55
end
66

77
module VERSION #:nodoc:

railties/lib/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION
33
MAJOR = 4
44
MINOR = 0
55
TINY = 0
6-
PRE = "beta1"
6+
PRE = "rc1"
77

88
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
99
end

version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION
33
MAJOR = 4
44
MINOR = 0
55
TINY = 0
6-
PRE = "beta1"
6+
PRE = "rc1"
77

88
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
99
end

0 commit comments

Comments
 (0)