Prep for RC

This commit is contained in:
David Heinemeier Hansson 2010-07-26 12:52:34 -05:00
parent dd61a817de
commit 856fc4bbc3
15 changed files with 23 additions and 13 deletions

View File

@ -1,3 +1,8 @@
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* No material changes
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
* subject is automatically looked up on I18n using mailer_name and action_name as scope as in t(".subject") [JK]

View File

@ -3,7 +3,7 @@ module ActionMailer
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta4"
BUILD = "rc"
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end

View File

@ -1,4 +1,4 @@
*Rails 3.0.0 [Release Candidate] (unreleased)*
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Allow stylesheet/javascript extensions to be changed through railties. [Josh Kalderimis]

View File

@ -3,7 +3,7 @@ module ActionPack
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta4"
BUILD = "rc"
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end

View File

@ -1,4 +1,4 @@
*Rails 3.0.0 [Release Candidate] (unreleased)*
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Added ActiveModel::MassAssignmentSecurity [Eric Chapweske, Josh Kalderimis]

View File

@ -3,7 +3,7 @@ module ActiveModel
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta4"
BUILD = "rc"
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end

View File

@ -1,4 +1,4 @@
*Rails 3.0.0 [RC1] (unreleased)*
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Changed update_attribute to not run callbacks and update the record directly in the database [Neeraj Singh]

View File

@ -3,7 +3,7 @@ module ActiveRecord
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta4"
BUILD = "rc"
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end

View File

@ -1,3 +1,8 @@
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* No material changes
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
* JSON: set Base.include_root_in_json = true to include a root value in the JSON: {"post": {"title": ...}}. Mirrors the Active Record option. [Santiago Pastorino]

View File

@ -3,7 +3,7 @@ module ActiveResource
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta4"
BUILD = "rc"
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end

View File

@ -1,4 +1,4 @@
*Rails 3.0.0 [Release Candidate] (unreleased)*
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Removed Object#returning, Object#tap should be used instead. [Santiago Pastorino]

View File

@ -3,7 +3,7 @@ module ActiveSupport
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta4"
BUILD = "rc"
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end

View File

@ -1,4 +1,4 @@
*Rails 3.0.0 [Release Candidate] (unreleased)*
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Application generation: --skip-testunit and --skip-activerecord become --skip-test-unit
and --skip-active-record respectively. [fxn]

View File

@ -3,7 +3,7 @@ module Rails
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta4"
BUILD = "rc"
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end

View File

@ -3,7 +3,7 @@ module Rails
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta4"
BUILD = "rc"
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end