Preparing for 3.2.0 release

This commit is contained in:
David Heinemeier Hansson
2012-01-20 17:44:32 +01:00
parent 6c656761ec
commit f36dcaf488
16 changed files with 17 additions and 19 deletions

View File

@@ -1 +1 @@
3.2.0.rc2
3.2.0

View File

@@ -1,4 +1,4 @@
## Rails 3.2.0 (unreleased) ##
## Rails 3.2.0 (January 20, 2012) ##
* Upgrade mail version to 2.4.0 *ML*

View File

@@ -3,7 +3,7 @@ module ActionMailer
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end

View File

@@ -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*

View File

@@ -3,7 +3,7 @@ module ActionPack
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end

View File

@@ -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*

View File

@@ -3,7 +3,7 @@ module ActiveModel
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end

View File

@@ -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.

View File

@@ -3,7 +3,7 @@ module ActiveRecord
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end

View File

@@ -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.

View File

@@ -3,7 +3,7 @@ module ActiveResource
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end

View File

@@ -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*

View File

@@ -3,7 +3,7 @@ module ActiveSupport
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end

View File

@@ -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*

View File

@@ -3,7 +3,7 @@ module Rails
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end

View File

@@ -3,7 +3,7 @@ module Rails
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end