mirror of
https://github.com/github/rails.git
synced 2026-01-08 22:27:59 -05:00
Preparing for 3.2.0 release
This commit is contained in:
@@ -1 +1 @@
|
||||
3.2.0.rc2
|
||||
3.2.0
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
## Rails 3.2.0 (unreleased) ##
|
||||
## Rails 3.2.0 (January 20, 2012) ##
|
||||
|
||||
* Upgrade mail version to 2.4.0 *ML*
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ module ActionMailer
|
||||
MAJOR = 3
|
||||
MINOR = 2
|
||||
TINY = 0
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
||||
end
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
## Rails 3.2.0 (unreleased) ##
|
||||
## Rails 3.2.0 (January 20, 2012) ##
|
||||
|
||||
* Setting config.assets.logger to false turn off Sprockets logger *Guillermo Iguaran*
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ module ActionPack
|
||||
MAJOR = 3
|
||||
MINOR = 2
|
||||
TINY = 0
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
||||
end
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
## Rails 3.2.0 (unreleased) ##
|
||||
## Rails 3.2.0 (January 20, 2012) ##
|
||||
|
||||
* Deprecated `define_attr_method` in `ActiveModel::AttributeMethods`, because this only existed to
|
||||
support methods like `set_table_name` in Active Record, which are themselves being deprecated.
|
||||
|
||||
*Jon Leighton*
|
||||
support methods like `set_table_name` in Active Record, which are themselves being deprecated. *Jon Leighton*
|
||||
|
||||
* Add ActiveModel::Errors#added? to check if a specific error has been added *Martin Svalin*
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ module ActiveModel
|
||||
MAJOR = 3
|
||||
MINOR = 2
|
||||
TINY = 0
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
||||
end
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
## Rails 3.2.0 (unreleased) ##
|
||||
## Rails 3.2.0 (January 20, 2012) ##
|
||||
|
||||
* Added a `with_lock` method to ActiveRecord objects, which starts
|
||||
a transaction, locks the object (pessimistically) and yields to the block.
|
||||
|
||||
@@ -3,7 +3,7 @@ module ActiveRecord
|
||||
MAJOR = 3
|
||||
MINOR = 2
|
||||
TINY = 0
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
||||
end
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
## Rails 3.2.0 (unreleased) ##
|
||||
## Rails 3.2.0 (January 20, 2012) ##
|
||||
|
||||
* Redirect responses: 303 See Other and 307 Temporary Redirect now behave like
|
||||
301 Moved Permanently and 302 Found. GH #3302.
|
||||
|
||||
@@ -3,7 +3,7 @@ module ActiveResource
|
||||
MAJOR = 3
|
||||
MINOR = 2
|
||||
TINY = 0
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
||||
end
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
## Rails 3.2.0 (unreleased) ##
|
||||
## Rails 3.2.0 (January 20, 2012) ##
|
||||
|
||||
* ActiveSupport::Base64 is deprecated in favor of ::Base64. *Sergey Nartimov*
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ module ActiveSupport
|
||||
MAJOR = 3
|
||||
MINOR = 2
|
||||
TINY = 0
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
||||
end
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
## Rails 3.2.0 (unreleased) ##
|
||||
## Rails 3.2.0 (January 20, 2012) ##
|
||||
|
||||
* Rails 2.3-style plugins in vendor/plugins are deprecated and will be removed in Rails 4.0. Move them out of vendor/plugins and bundle them in your Gemfile, or fold them in to your app as lib/myplugin/* and config/initializers/myplugin.rb. *Santiago Pastorino*
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ module Rails
|
||||
MAJOR = 3
|
||||
MINOR = 2
|
||||
TINY = 0
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
||||
end
|
||||
|
||||
@@ -3,7 +3,7 @@ module Rails
|
||||
MAJOR = 3
|
||||
MINOR = 2
|
||||
TINY = 0
|
||||
PRE = "rc2"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user