Prep for RC2 later today

This commit is contained in:
David Heinemeier Hansson 2009-02-27 14:46:23 +01:00
parent ff894b55dd
commit 77b0994c78
17 changed files with 25 additions and 20 deletions

View File

@ -1,4 +1,4 @@
*Edge*
*2.3.1 [RC2] (February 27th, 2009)*
* Fixed that ActionMailer should send correctly formatted Return-Path in MAIL FROM for SMTP #1842 [Matt Jones]

View File

@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
s.add_dependency('actionpack', '= 2.3.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.1' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'

View File

@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 0
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,4 +1,4 @@
*Edge*
*2.3.1 [RC2] (February 27th, 2009)*
* Fixed that passing a custom form builder would be forwarded to nested fields_for calls #2023 [Eloy Duran/Nate Wiger]

View File

@ -80,7 +80,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
s.add_dependency('activesupport', '= 2.3.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.1' + PKG_BUILD)
s.add_dependency('rack', '>= 0.9.0')
s.require_path = 'lib'

View File

@ -2,7 +2,7 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 0
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,4 +1,4 @@
*Edge*
*2.3.1 [RC2] (February 27th, 2009)*
* Added ActiveRecord::Base.each and ActiveRecord::Base.find_in_batches for batch processing [DHH/Jamis Buck]

View File

@ -177,7 +177,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end
s.add_dependency('activesupport', '= 2.3.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.1' + PKG_BUILD)
s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite"

View File

@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 0
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,3 +1,8 @@
*2.3.1 [RC2] (February 27th, 2009)*
* Nothing new, just included in 2.3.1
*2.3.0 [RC1] (February 1st, 2009)*
* Nothing new, just included in 2.3.0

View File

@ -67,7 +67,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end
s.add_dependency('activesupport', '= 2.3.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.1' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'active_resource'

View File

@ -2,7 +2,7 @@ module ActiveResource
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 0
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,4 +1,4 @@
*Edge*
*2.3.1 [RC2] (February 27th, 2009)*
* 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]

View File

@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 0
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,4 +1,4 @@
*Edge*
*2.3.1 [RC2] (February 27th, 2009)*
* Allow metal to live in plugins #2045 [Matthew Rudy]

View File

@ -310,11 +310,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.8.3')
s.add_dependency('activesupport', '= 2.3.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.0' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.3.0' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.3.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.1' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.1' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.1' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.3.1' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.3.1' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false

View File

@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 0
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end