Made ready for release of 0.9.4

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@439 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-01-17 01:13:15 +00:00
parent 9577f0f57c
commit ddcc400293
13 changed files with 17 additions and 10 deletions

View File

@ -1,4 +1,4 @@
*SVN*
*0.6* (January 17th, 2005)
* Fixed that bcc and cc should be settable through @bcc and @cc -- not just @headers["Bcc"] and @headers["Cc"] #453 [Eric Hodel]

View File

@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionmailer'
PKG_VERSION = '0.5.0' + PKG_BUILD
PKG_VERSION = '0.6.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
desc "Default Task"

View File

@ -1,4 +1,4 @@
*SVN*
*1.3.0* (January 17th, 2005)
* Added an extensive caching module that offers three levels of granularity (page, action, fragment) and a variety of stores.
Read more in ActionController::Caching.

View File

@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionpack'
PKG_VERSION = '1.2.0' + PKG_BUILD
PKG_VERSION = '1.3.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
desc "Default Task"

View File

@ -41,6 +41,7 @@ files = %w-
action_controller/cgi_ext/cgi_ext.rb
action_controller/cgi_ext/cgi_methods.rb
action_controller/cgi_ext/cookie_performance_fix.rb
action_controller/caching.rb
action_controller/cgi_process.rb
action_controller/cookies.rb
action_controller/dependencies.rb

View File

@ -1,4 +1,4 @@
*SVN*
*1.5.0* (January 17th, 2005)
* Fixed that unit tests for MySQL are now run as the "rails" user instead of root #455 [Eric Hodel]

View File

@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'activerecord'
PKG_VERSION = '1.4.0' + PKG_BUILD
PKG_VERSION = '1.5.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_FILES = FileList[

View File

@ -56,6 +56,7 @@ files = %w-
active_record/transactions.rb
active_record/validations.rb
active_record/vendor/mysql.rb
active_record/vendor/mysql411.rb
active_record/vendor/simple.rb
-

View File

@ -1,4 +1,4 @@
*SVN*
*0.9.4* (January 17th, 2005)
* Added that ApplicationController will catch a ControllerNotFound exception if someone attempts to access a url pointing to an unexisting controller [Tobias Luetke]
@ -21,6 +21,8 @@
* Removed Fancy Indexing as a default option on the WEBrick servlet as it made it harder to use various caching schemes
* Upgraded to Active Record 1.5, Action Pack 1.3, Action Mailer 0.6
*0.9.3* (January 4th, 2005)

View File

@ -245,9 +245,9 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.4.15')
s.add_dependency('activerecord', '>= 1.4.0')
s.add_dependency('actionpack', '>= 1.2.0')
s.add_dependency('actionmailer', '>= 0.5.0')
s.add_dependency('activerecord', '>= 1.5.0')
s.add_dependency('actionpack', '>= 1.3.0')
s.add_dependency('actionmailer', '>= 0.6.0')
s.has_rdoc = false

View File

@ -1,3 +1,4 @@
Dependencies.mechanism = :load
ActionController::Base.consider_all_requests_local = true
ActionController::Base.perform_caching = false
BREAKPOINT_SERVER_PORT = 42531

View File

@ -1,2 +1,3 @@
Dependencies.mechanism = :require
ActionController::Base.consider_all_requests_local = false
ActionController::Base.perform_caching = true

View File

@ -1,3 +1,4 @@
Dependencies.mechanism = :require
ActionController::Base.consider_all_requests_local = true
ActionController::Base.perform_caching = false
ActionMailer::Base.delivery_method = :test