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

Changeset 260 for trunk/railties

Show
Ignore:
Timestamp:
12/22/04 23:56:17 (4 years ago)
Author:
david
Message:

Releasing Rails 0.9.2

Files:

Legend:

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

    r246 r260  
    1 *SVN
     1*0.9.2
    22 
    33* Fixed CTRL-C exists from the Breakpointer to be a clean affair without error dumping [Kent Sibilev] 
     
    1111* Added support for a -h/--help parameter in the generator #331 [Ulysses] 
    1212 
    13 * File.expand_path in config/environment.rb would fail when dealing with symlinked public directories [mjobin] 
     13* Fixed that File.expand_path in config/environment.rb would fail when dealing with symlinked public directories [mjobin] 
     14 
     15* Upgraded to Action Pack 1.1.0 and Active Record 1.3.0 
    1416 
    1517 
  • trunk/railties/Rakefile

    r205 r260  
    1010PKG_BUILD       = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1111PKG_NAME        = 'rails' 
    12 PKG_VERSION     = '0.9.1' + PKG_BUILD 
     12PKG_VERSION     = '0.9.2' + PKG_BUILD 
    1313PKG_FILE_NAME   = "#{PKG_NAME}-#{PKG_VERSION}" 
    1414PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" 
     
    222222 
    223223  s.add_dependency('rake', '>= 0.4.11') 
    224   s.add_dependency('activerecord', '>= 1.2.0') 
    225   s.add_dependency('actionpack', '>= 1.0.1') 
     224  s.add_dependency('activerecord', '>= 1.3.0') 
     225  s.add_dependency('actionpack', '>= 1.1.0') 
    226226  s.add_dependency('actionmailer', '>= 0.5.0') 
    227227