Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f36dcaf

Browse files
author
David Heinemeier Hansson
committedJan 20, 2012
Preparing for 3.2.0 release
1 parent 6c65676 commit f36dcaf

File tree

16 files changed

+17
-19
lines changed

16 files changed

+17
-19
lines changed
 

Diff for: ‎RAILS_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0.rc2
1+
3.2.0

Diff for: ‎actionmailer/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 3.2.0 (unreleased) ##
1+
## Rails 3.2.0 (January 20, 2012) ##
22

33
* Upgrade mail version to 2.4.0 *ML*
44

Diff for: ‎actionmailer/lib/action_mailer/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 2
55
TINY = 0
6-
PRE = "rc2"
6+
PRE = nil
77

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

Diff for: ‎actionpack/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 3.2.0 (unreleased) ##
1+
## Rails 3.2.0 (January 20, 2012) ##
22

33
* Setting config.assets.logger to false turn off Sprockets logger *Guillermo Iguaran*
44

Diff for: ‎actionpack/lib/action_pack/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 2
55
TINY = 0
6-
PRE = "rc2"
6+
PRE = nil
77

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

Diff for: ‎activemodel/CHANGELOG.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
## Rails 3.2.0 (unreleased) ##
1+
## Rails 3.2.0 (January 20, 2012) ##
22

33
* Deprecated `define_attr_method` in `ActiveModel::AttributeMethods`, because this only existed to
4-
support methods like `set_table_name` in Active Record, which are themselves being deprecated.
5-
6-
*Jon Leighton*
4+
support methods like `set_table_name` in Active Record, which are themselves being deprecated. *Jon Leighton*
75

86
* Add ActiveModel::Errors#added? to check if a specific error has been added *Martin Svalin*
97

Diff for: ‎activemodel/lib/active_model/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 2
55
TINY = 0
6-
PRE = "rc2"
6+
PRE = nil
77

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

Diff for: ‎activerecord/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 3.2.0 (unreleased) ##
1+
## Rails 3.2.0 (January 20, 2012) ##
22

33
* Added a `with_lock` method to ActiveRecord objects, which starts
44
a transaction, locks the object (pessimistically) and yields to the block.

Diff for: ‎activerecord/lib/active_record/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 2
55
TINY = 0
6-
PRE = "rc2"
6+
PRE = nil
77

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

Diff for: ‎activeresource/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 3.2.0 (unreleased) ##
1+
## Rails 3.2.0 (January 20, 2012) ##
22

33
* Redirect responses: 303 See Other and 307 Temporary Redirect now behave like
44
301 Moved Permanently and 302 Found. GH #3302.

Diff for: ‎activeresource/lib/active_resource/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 2
55
TINY = 0
6-
PRE = "rc2"
6+
PRE = nil
77

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

Diff for: ‎activesupport/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 3.2.0 (unreleased) ##
1+
## Rails 3.2.0 (January 20, 2012) ##
22

33
* ActiveSupport::Base64 is deprecated in favor of ::Base64. *Sergey Nartimov*
44

Diff for: ‎activesupport/lib/active_support/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 2
55
TINY = 0
6-
PRE = "rc2"
6+
PRE = nil
77

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

Diff for: ‎railties/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 3.2.0 (unreleased) ##
1+
## Rails 3.2.0 (January 20, 2012) ##
22

33
* 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*
44

Diff for: ‎railties/lib/rails/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 2
55
TINY = 0
6-
PRE = "rc2"
6+
PRE = nil
77

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

Diff for: ‎version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 2
55
TINY = 0
6-
PRE = "rc2"
6+
PRE = nil
77

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

0 commit comments

Comments
 (0)
Please sign in to comment.