Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 515

Show
Ignore:
Timestamp:
01/25/05 20:10:24 (4 years ago)
Author:
david
Message:

Prepared for 0.9.5 release

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r505 r515  
    1 *SVN* 
     1*1.4.0* (January 25th, 2005) 
     2 
     3* Fixed problems with ActiveRecordStore under the development environment in Rails 
    24 
    35* Fixed the ordering of attributes in the xml-decleration of Builder #540 [woeye] 
  • trunk/actionpack/install.rb

    r487 r515  
    6666 action_controller/support/core_ext/hash/keys.rb 
    6767 action_controller/support/core_ext/hash.rb 
     68 action_controller/support/core_ext/object_and_class.rb 
    6869 action_controller/support/core_ext/numeric/bytes.rb 
    6970 action_controller/support/core_ext/numeric/time.rb 
  • trunk/actionpack/Rakefile

    r458 r515  
    99PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1010PKG_NAME      = 'actionpack' 
    11 PKG_VERSION   = '1.3.1' + PKG_BUILD 
     11PKG_VERSION   = '1.4.0' + PKG_BUILD 
    1212PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    1313 
  • trunk/activerecord/CHANGELOG

    r504 r515  
    1 *SVN* 
     1*1.6.0* (January 25th, 2005) 
    22 
    33* Added that has_many association build and create methods can take arrays of record data like Base#create and Base#build to build/create multiple records at once. 
  • trunk/activerecord/install.rb

    r487 r515  
    5353 active_record/support/core_ext/hash/keys.rb 
    5454 active_record/support/core_ext/hash.rb 
     55 active_record/support/core_ext/object_and_class.rb 
    5556 active_record/support/core_ext/numeric/bytes.rb 
    5657 active_record/support/core_ext/numeric/time.rb 
  • trunk/activerecord/Rakefile

    r458 r515  
    99PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1010PKG_NAME      = 'activerecord' 
    11 PKG_VERSION   = '1.5.1' + PKG_BUILD 
     11PKG_VERSION   = '1.6.0' + PKG_BUILD 
    1212PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    1313 
  • trunk/railties/CHANGELOG

    r511 r515  
    1 *SVN* 
     1*0.9.5* (January 25th, 2005) 
    22 
    33* Fixed dependency reloading by switching to a remove_const approach where all Active Records, Active Record Observers, and Action Controllers are reloading by undefining their classes. This enables you to remove methods in all three types and see the change reflected immediately and it fixes #539. This also means that only those three types of classes will benefit from the const_missing and reloading approach. If you want other classes (like some in lib/) to reload, you must use require_dependency to do it. 
     
    1616 
    1717* Fixed that FCGI can also display SyntaxErrors 
     18 
     19* Upgraded to Active Record 1.6.0, Action Pack 1.4.0 
    1820 
    1921 
  • trunk/railties/Rakefile

    r486 r515  
    1010PKG_BUILD       = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1111PKG_NAME        = 'rails' 
    12 PKG_VERSION     = '0.9.4.1' + PKG_BUILD 
     12PKG_VERSION     = '0.9.5' + PKG_BUILD 
    1313PKG_FILE_NAME   = "#{PKG_NAME}-#{PKG_VERSION}" 
    1414PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" 
     
    248248 
    249249  s.add_dependency('rake', '>= 0.4.15') 
    250   s.add_dependency('activerecord', '>= 1.5.1') 
    251   s.add_dependency('actionpack', '>= 1.3.1') 
     250  s.add_dependency('activerecord', '>= 1.6.0') 
     251  s.add_dependency('actionpack', '>= 1.4.0') 
    252252  s.add_dependency('actionmailer', '>= 0.6.1') 
    253253