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

Changeset 874

Show
Ignore:
Timestamp:
03/07/05 01:50:58 (4 years ago)
Author:
david
Message:

Prepared for 0.10.1 release

Files:

Legend:

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

    r796 r874  
     1*0.7.1* (7th March, 2005) 
     2 
     3* Bind to newest Action Pack (1.5.1) 
     4 
     5 
    16*0.7.0* (24th February, 2005) 
    27 
  • trunk/actionmailer/Rakefile

    r795 r874  
    99PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1010PKG_NAME      = 'actionmailer' 
    11 PKG_VERSION   = '0.7.0' + PKG_BUILD 
     11PKG_VERSION   = '0.7.1' + PKG_BUILD 
    1212PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    1313 
     
    5151  s.homepage = "http://www.rubyonrails.org" 
    5252 
    53   s.add_dependency('actionpack', '= 1.5.0' + PKG_BUILD) 
     53  s.add_dependency('actionpack', '= 1.5.1' + PKG_BUILD) 
    5454 
    5555  s.has_rdoc = true 
  • trunk/actionpack/CHANGELOG

    r871 r874  
    1 *SVN* 
     1*1.5.1* (7th March, 2005) 
    22 
    33* Fixed that the routes.rb file wouldn't be found on symlinked setups due to File.expand_path #793 [piotr@t-p-l.com] 
  • trunk/actionpack/Rakefile

    r795 r874  
    99PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1010PKG_NAME      = 'actionpack' 
    11 PKG_VERSION   = '1.5.0' + PKG_BUILD 
     11PKG_VERSION   = '1.5.1' + PKG_BUILD 
    1212PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    1313 
     
    5858  s.requirements << 'none' 
    5959 
    60   s.add_dependency('activesupport', '= 1.0.0' + PKG_BUILD) 
     60  s.add_dependency('activesupport', '= 1.0.1' + PKG_BUILD) 
    6161 
    6262  s.require_path = 'lib' 
  • trunk/actionwebservice/CHANGELOG

    r830 r874  
    1 *0.6.0* (Unreleased
     1*0.6.0* (7th March, 2005
    22 
    33* Add action_controller/test_invoke, used for integrating AWS with the Rails testing infrastructure 
  • trunk/actionwebservice/Rakefile

    r812 r874  
    1010PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1111PKG_NAME      = 'actionwebservice' 
    12 PKG_VERSION   = '0.5.0' + PKG_BUILD 
     12PKG_VERSION   = '0.6.0' + PKG_BUILD 
    1313PKG_FILE_NAME   = "#{PKG_NAME}-#{PKG_VERSION}" 
    1414PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" 
     
    5757  s.homepage = "http://www.rubyonrails.org" 
    5858 
    59   s.add_dependency('actionpack', '>= 1.5.0' + PKG_BUILD) 
    60   s.add_dependency('activerecord', '>= 1.7.0' + PKG_BUILD) 
    61   s.add_dependency('activesupport', '>= 1.0.0' + PKG_BUILD) 
     59  s.add_dependency('actionpack', '>= 1.5.1' + PKG_BUILD) 
     60  s.add_dependency('activerecord', '>= 1.8.0' + PKG_BUILD) 
     61  s.add_dependency('activesupport', '>= 1.0.1' + PKG_BUILD) 
    6262 
    6363  s.has_rdoc = true 
  • trunk/activerecord/CHANGELOG

    r860 r874  
    1 *SVN* 
     1*1.8.0* (7th March, 2005) 
    22 
    33* Added ActiveRecord::Base.colorize_logging to control whether to use colors in logs or not (on by default) 
  • trunk/activesupport/CHANGELOG

    r872 r874  
    1 *SVN* 
     1*1.0.1* (7th March, 2005) 
    22 
    33* Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 [Nicholas Seckar] 
  • trunk/activesupport/Rakefile

    r799 r874  
    66PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    77PKG_NAME      = 'activesupport' 
    8 PKG_VERSION   = '1.0.0' + PKG_BUILD 
     8PKG_VERSION   = '1.0.1' + PKG_BUILD 
    99PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    1010 
  • trunk/railties/CHANGELOG

    r868 r874  
    1 *SVN* 
     1*0.10.1* (7th March, 2005) 
    22 
    33* Fixed rake stats to ignore editor backup files like model.rb~ #791 [skanthak] 
     
    3030 
    3131* Removed the obsolete -i/--index option from the WEBrick servlet #743 
     32 
     33* Upgraded to Active Record 1.8.0, Action Pack 1.5.1, Action Mailer 0.7.1, Action Web Service 0.6.0, Active Support 1.0.1 
    3234 
    3335 
  • trunk/railties/html/index.html

    r793 r874  
    6262 
    6363<p> 
     64  Trying to setup a default page for Rails using Routes? You'll have to delete this file (public/index.html) to get under way. Then define a new route in <tt>config/routes.rb</tt> of the form: 
     65  <pre>  map.connect '', :controller => 'wiki/page', :action => 'show', :title => 'Welcome'</pre> 
     66</p> 
     67 
     68<p> 
    6469  Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/> 
    6570  Then try the friendly Rails community <a href="http://www.rubyonrails.org">on the web</a> or <a href="http://www.rubyonrails.org/show/IRC">on IRC</a> 
  • trunk/railties/Rakefile

    r861 r874  
    1010PKG_BUILD       = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1111PKG_NAME        = 'rails' 
    12 PKG_VERSION     = '0.10.0' + PKG_BUILD 
     12PKG_VERSION     = '0.10.1' + PKG_BUILD 
    1313PKG_FILE_NAME   = "#{PKG_NAME}-#{PKG_VERSION}" 
    1414PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" 
     
    238238 
    239239  s.add_dependency('rake', '>= 0.4.15') 
    240   s.add_dependency('activesupport',    '= 1.0.0' + PKG_BUILD) 
    241   s.add_dependency('activerecord',     '= 1.7.0' + PKG_BUILD) 
    242   s.add_dependency('actionpack',       '= 1.5.0' + PKG_BUILD) 
    243   s.add_dependency('actionmailer',     '= 0.7.0' + PKG_BUILD) 
    244   s.add_dependency('actionwebservice', '= 0.5.0' + PKG_BUILD) 
     240  s.add_dependency('activesupport',    '= 1.0.1' + PKG_BUILD) 
     241  s.add_dependency('activerecord',     '= 1.8.0' + PKG_BUILD) 
     242  s.add_dependency('actionpack',       '= 1.5.1' + PKG_BUILD) 
     243  s.add_dependency('actionmailer',     '= 0.7.1' + PKG_BUILD) 
     244  s.add_dependency('actionwebservice', '= 0.6.0' + PKG_BUILD) 
    245245 
    246246  s.rdoc_options << '--exclude' << '.'