Skip to content

Commit 73fc42c

Browse files
author
David Heinemeier Hansson
committed
Prepare for final 2.3 release
1 parent 5f10533 commit 73fc42c

File tree

17 files changed

+22
-44
lines changed

17 files changed

+22
-44
lines changed

actionmailer/CHANGELOG

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
*2.3.1 [RC2] (March 5, 2009)*
1+
*2.3.2 [Final] (March 15, 2009)*
22

33
* Fixed that ActionMailer should send correctly formatted Return-Path in MAIL FROM for SMTP #1842 [Matt Jones]
44

5-
6-
*2.3.0 [RC1] (February 1st, 2009)*
7-
85
* Fixed RFC-2045 quoted-printable bug #1421 [squadette]
96

107
* Fixed that no body charset would be set when there are attachments present #740 [Paweł Kondzior]

actionmailer/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
5555
s.rubyforge_project = "actionmailer"
5656
s.homepage = "http://www.rubyonrails.org"
5757

58-
s.add_dependency('actionpack', '= 2.3.1' + PKG_BUILD)
58+
s.add_dependency('actionpack', '= 2.3.2' + PKG_BUILD)
5959

6060
s.has_rdoc = true
6161
s.requirements << 'none'

actionmailer/lib/action_mailer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActionMailer
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 3
5-
TINY = 1
5+
TINY = 2
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

actionpack/CHANGELOG

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*2.3.1 [RC2] (March 5, 2009)*
1+
*2.3.2 [Final] (March 15, 2009)*
22

33
* Fixed that redirection would just log the options, not the final url (which lead to "Redirected to #<Post:0x23150b8>") [DHH]
44

@@ -14,9 +14,6 @@
1414

1515
* Added localized rescue template when I18n.locale is set (ex: public/404.da.html) #1835 [José Valim]
1616

17-
18-
*2.3.0 [RC1] (February 1st, 2009)*
19-
2017
* Make the form_for and fields_for helpers support the new Active Record nested update options. #1202 [Eloy Duran]
2118

2219
<% form_for @person do |person_form| %>

actionpack/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ spec = Gem::Specification.new do |s|
8080
s.has_rdoc = true
8181
s.requirements << 'none'
8282

83-
s.add_dependency('activesupport', '= 2.3.1' + PKG_BUILD)
83+
s.add_dependency('activesupport', '= 2.3.2' + PKG_BUILD)
8484

8585
s.require_path = 'lib'
8686
s.autorequire = 'action_controller'

actionpack/lib/action_pack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActionPack #:nodoc:
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 3
5-
TINY = 1
5+
TINY = 2
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activerecord/CHANGELOG

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
*2.3.1 [RC2] (March 5, 2009)*
1+
*2.3.2 [Final] (March 15, 2009)*
22

33
* Added ActiveRecord::Base.find_each and ActiveRecord::Base.find_in_batches for batch processing [DHH/Jamis Buck]
44

55
* Added that ActiveRecord::Base.exists? can be called with no arguments #1817 [Scott Taylor]
66

7-
*2.3.0 [RC1] (February 1st, 2009)*
8-
97
* Add Support for updating deeply nested models from a single form. #1202 [Eloy Duran]
108

119
class Book < ActiveRecord::Base

activerecord/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ spec = Gem::Specification.new do |s|
177177
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
178178
end
179179

180-
s.add_dependency('activesupport', '= 2.3.1' + PKG_BUILD)
180+
s.add_dependency('activesupport', '= 2.3.2' + PKG_BUILD)
181181

182182
s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
183183
s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite"

activerecord/lib/active_record/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActiveRecord
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 3
5-
TINY = 1
5+
TINY = 2
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activeresource/CHANGELOG

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1-
*2.3.1 [RC2] (March 5, 2009)*
1+
*2.3.2 [Final] (March 15, 2009)*
22

3-
* Nothing new, just included in 2.3.1
4-
5-
6-
*2.3.0 [RC1] (February 1st, 2009)*
7-
8-
* Nothing new, just included in 2.3.0
3+
* Nothing new, just included in 2.3.2
94

105

116
*2.2.1 [RC2] (November 14th, 2008)*

0 commit comments

Comments
 (0)