mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Prep for RC2
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8233 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
3a3e7efee9
commit
54a75de3ec
18 changed files with 25 additions and 21 deletions
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*2.0.0 [RC2]* (November 28th, 2007)
|
||||
|
||||
* Update ActionMailer so it treats ActionView the same way that ActionController does. Closes #10244 [rick]
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
|
|||
s.rubyforge_project = "actionmailer"
|
||||
s.homepage = "http://www.rubyonrails.org"
|
||||
|
||||
s.add_dependency('actionpack', '= 1.99.0' + PKG_BUILD)
|
||||
s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD)
|
||||
|
||||
s.has_rdoc = true
|
||||
s.requirements << 'none'
|
||||
|
|
|
@ -31,7 +31,7 @@ module TMail #:nodoc:
|
|||
module VERSION #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 1
|
||||
TINY = 0
|
||||
TINY = 1
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -2,7 +2,7 @@ module ActionMailer
|
|||
module VERSION #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 99
|
||||
TINY = 0
|
||||
TINY = 1
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*2.0.0 [RC2]* (November 28th, 2007)
|
||||
|
||||
* Make sure the optimisation code for routes doesn't get used if :host, :anchor or :port are provided in the hash arguments. [pager, Koz] #10292
|
||||
|
||||
|
@ -124,6 +124,7 @@
|
|||
|
||||
* Only accept session ids from cookies, prevents session fixation attacks. [bradediger]
|
||||
|
||||
|
||||
*2.0.0 [Preview Release]* (September 29th, 2007) [Includes duplicates of changes from 1.12.2 - 1.13.3]
|
||||
|
||||
* Fixed that render template did not honor exempt_from_layout #9698 [pezra]
|
||||
|
|
|
@ -76,7 +76,7 @@ spec = Gem::Specification.new do |s|
|
|||
s.has_rdoc = true
|
||||
s.requirements << 'none'
|
||||
|
||||
s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD)
|
||||
s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
|
||||
|
||||
s.require_path = 'lib'
|
||||
s.autorequire = 'action_controller'
|
||||
|
|
|
@ -2,7 +2,7 @@ module ActionPack #:nodoc:
|
|||
module VERSION #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 99
|
||||
TINY = 0
|
||||
TINY = 1
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*2.0.0 [RC2]* (November 28th, 2007)
|
||||
|
||||
* Foxy fixtures: support single-table inheritance. #10234 [tom]
|
||||
|
||||
|
|
|
@ -172,7 +172,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', '= 1.99.0' + PKG_BUILD)
|
||||
s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
|
||||
|
||||
s.files.delete "test/fixtures/fixture_database.sqlite"
|
||||
s.files.delete "test/fixtures/fixture_database_2.sqlite"
|
||||
|
|
|
@ -2,7 +2,7 @@ module ActiveRecord
|
|||
module VERSION #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 99
|
||||
TINY = 0
|
||||
TINY = 1
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
*2.0.0 [RC2]* (November 28th, 2007)
|
||||
|
||||
* Don't cache net/http object so that ActiveResource is more thread-safe. Closes #10142 [kou]
|
||||
|
||||
* Update XML documentation examples to include explicit type attributes. Closes #9754 [hasmanyjosh]
|
||||
|
||||
|
||||
*2.0.0 [Preview Release]* (September 29th, 2007)
|
||||
|
||||
* Added one-off declarations of mock behavior [DHH]. Example:
|
||||
|
|
|
@ -62,7 +62,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', '= 1.99.0' + PKG_BUILD)
|
||||
s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
|
||||
|
||||
s.require_path = 'lib'
|
||||
s.autorequire = 'active_resource'
|
||||
|
|
|
@ -2,7 +2,7 @@ module ActiveResource
|
|||
module VERSION #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 99
|
||||
TINY = 0
|
||||
TINY = 1
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*2.0.0 [RC2]* (November 28th, 2007)
|
||||
|
||||
* Added Array#from and Array#to that behaves just from String#from and String#to [DHH]
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ module ActiveSupport
|
|||
module VERSION #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 99
|
||||
TINY = 0
|
||||
TINY = 1
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*2.0.0 [RC2]* (November 28th, 2007)
|
||||
|
||||
* Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai]
|
||||
|
||||
|
|
|
@ -312,11 +312,11 @@ spec = Gem::Specification.new do |s|
|
|||
EOF
|
||||
|
||||
s.add_dependency('rake', '>= 0.7.2')
|
||||
s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD)
|
||||
s.add_dependency('activerecord', '= 1.99.0' + PKG_BUILD)
|
||||
s.add_dependency('actionpack', '= 1.99.0' + PKG_BUILD)
|
||||
s.add_dependency('actionmailer', '= 1.99.0' + PKG_BUILD)
|
||||
s.add_dependency('activeresource', '= 1.99.0' + PKG_BUILD)
|
||||
s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
|
||||
s.add_dependency('activerecord', '= 1.99.1' + PKG_BUILD)
|
||||
s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD)
|
||||
s.add_dependency('actionmailer', '= 1.99.1' + PKG_BUILD)
|
||||
s.add_dependency('activeresource', '= 1.99.1' + PKG_BUILD)
|
||||
|
||||
s.rdoc_options << '--exclude' << '.'
|
||||
s.has_rdoc = false
|
||||
|
|
|
@ -2,7 +2,7 @@ module Rails
|
|||
module VERSION #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 99
|
||||
TINY = 0
|
||||
TINY = 1
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue