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 73fc42c

Browse files
author
David Heinemeier Hansson
committedMar 16, 2009
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

+1-4
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

+1-1
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

+1-1
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

+1-4
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

+1-1
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

+1-1
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

+1-3
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

+1-1
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

+1-1
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

+2-7
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)*

‎activeresource/Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec = Gem::Specification.new do |s|
6767
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
6868
end
6969

70-
s.add_dependency('activesupport', '= 2.3.1' + PKG_BUILD)
70+
s.add_dependency('activesupport', '= 2.3.2' + PKG_BUILD)
7171

7272
s.require_path = 'lib'
7373
s.autorequire = 'active_resource'

‎activeresource/lib/active_resource/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActiveResource
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

‎activesupport/CHANGELOG

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
*Edge*
1+
*2.3.2 [Final] (March 15, 2009)*
22

33
* XmlMini supports LibXML and Nokogiri backends. #2084, #2190 [Bart ten Brinke, Aaron Patterson]
44
Example: XmlMini.backend = 'Nokogiri'
55

6-
7-
*2.3.1 [RC2] (March 5, 2009)*
8-
96
* Vendorize i18n 0.1.3 gem (fixes issues with incompatible character encodings in Ruby 1.9) #2038 [Akira Matsuda]
107

118
* Update bundled memcache-client from 1.5.0.5 to 1.6.4.99. See http://www.mikeperham.com/2009/02/15/memcache-client-performance/ [Mike Perham]
@@ -18,9 +15,6 @@
1815

1916
* Introduce Array.wrap(foo) to wrap the argument in an array unless it's already an array. Wraps nil as an empty array. Use instead of Array(foo) and foo.to_a since they treat String as Enumerable. [Jeremy Kemper]
2017

21-
22-
*2.3.0 [RC1] (February 1st, 2009)*
23-
2418
* TimeWithZone#xmlschema accepts optional fraction_digits argument [#1725 state:resolved] [Nicholas Dainty]
2519

2620
* Object#tap shim for Ruby < 1.8.7. Similar to Object#returning, tap yields self then returns self. [Jeremy Kemper]

‎activesupport/lib/active_support/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActiveSupport
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

‎railties/CHANGELOG

+1-4
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
* Allow metal to live in plugins #2045 [Matthew Rudy]
44

5-
6-
*2.3.0 [RC1] (February 1st, 2009)*
7-
85
* Added metal [Josh Peek]
96

107
* Remove script/performance/request in favour of the performance integration tests. [Pratik Naik]

‎railties/Rakefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -311,11 +311,11 @@ spec = Gem::Specification.new do |s|
311311
EOF
312312

313313
s.add_dependency('rake', '>= 0.8.3')
314-
s.add_dependency('activesupport', '= 2.3.1' + PKG_BUILD)
315-
s.add_dependency('activerecord', '= 2.3.1' + PKG_BUILD)
316-
s.add_dependency('actionpack', '= 2.3.1' + PKG_BUILD)
317-
s.add_dependency('actionmailer', '= 2.3.1' + PKG_BUILD)
318-
s.add_dependency('activeresource', '= 2.3.1' + PKG_BUILD)
314+
s.add_dependency('activesupport', '= 2.3.2' + PKG_BUILD)
315+
s.add_dependency('activerecord', '= 2.3.2' + PKG_BUILD)
316+
s.add_dependency('actionpack', '= 2.3.2' + PKG_BUILD)
317+
s.add_dependency('actionmailer', '= 2.3.2' + PKG_BUILD)
318+
s.add_dependency('activeresource', '= 2.3.2' + PKG_BUILD)
319319

320320
s.rdoc_options << '--exclude' << '.'
321321
s.has_rdoc = false

‎railties/lib/rails/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Rails
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

0 commit comments

Comments
 (0)
Please sign in to comment.