Skip to content

Commit

Permalink
Preparing for 3.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Jan 20, 2012
1 parent 6c65676 commit f36dcaf
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 19 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
3.2.0.rc2
3.2.0
2 changes: 1 addition & 1 deletion actionmailer/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 3.2.0 (unreleased) ##
## Rails 3.2.0 (January 20, 2012) ##

* Upgrade mail version to 2.4.0 *ML*

Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/CHANGELOG.md
@@ -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*

Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
6 changes: 2 additions & 4 deletions activemodel/CHANGELOG.md
@@ -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*

Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG.md
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activeresource/CHANGELOG.md
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion activeresource/lib/active_resource/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activesupport/CHANGELOG.md
@@ -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*

Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion railties/CHANGELOG.md
@@ -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*

Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 0
PRE = "rc2"
PRE = nil

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

0 comments on commit f36dcaf

Please sign in to comment.