Skip to content

Commit

Permalink
rails/master is now 4.0.0.beta and will only support Ruby 1.9.3+
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Dec 20, 2011
1 parent df28b80 commit 632fa15
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0.rc1
4.0.0.beta
6 changes: 3 additions & 3 deletions actionmailer/lib/action_mailer/version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module ActionMailer
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
6 changes: 3 additions & 3 deletions actionpack/lib/action_pack/version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module ActionPack
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
6 changes: 3 additions & 3 deletions activemodel/lib/active_model/version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module ActiveModel
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
6 changes: 3 additions & 3 deletions activerecord/lib/active_record/version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module ActiveRecord
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
6 changes: 3 additions & 3 deletions activeresource/lib/active_resource/version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module ActiveResource
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
6 changes: 3 additions & 3 deletions activesupport/lib/active_support/version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module ActiveSupport
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
6 changes: 3 additions & 3 deletions railties/lib/rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module Rails
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
6 changes: 3 additions & 3 deletions version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module Rails
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down

0 comments on commit 632fa15

Please sign in to comment.