mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Prep for RC
This commit is contained in:
parent
dd61a817de
commit
856fc4bbc3
15 changed files with 23 additions and 13 deletions
|
@ -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]
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActionMailer
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta4"
|
||||
BUILD = "rc"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -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]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActionPack
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta4"
|
||||
BUILD = "rc"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -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]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActiveModel
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta4"
|
||||
BUILD = "rc"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -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]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActiveRecord
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta4"
|
||||
BUILD = "rc"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActiveResource
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta4"
|
||||
BUILD = "rc"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -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]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActiveSupport
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta4"
|
||||
BUILD = "rc"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -3,7 +3,7 @@ module Rails
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta4"
|
||||
BUILD = "rc"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@ module Rails
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta4"
|
||||
BUILD = "rc"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue