From ddcc400293f0857d48b0fec9a5ec8ac70f9043c5 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 17 Jan 2005 01:13:15 +0000 Subject: Made ready for release of 0.9.4 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@439 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionmailer/CHANGELOG | 2 +- actionmailer/Rakefile | 2 +- actionpack/CHANGELOG | 2 +- actionpack/Rakefile | 2 +- actionpack/install.rb | 1 + activerecord/CHANGELOG | 2 +- activerecord/Rakefile | 2 +- activerecord/install.rb | 1 + railties/CHANGELOG | 4 +++- railties/Rakefile | 6 +++--- railties/environments/development.rb | 1 + railties/environments/production.rb | 1 + railties/environments/test.rb | 1 + 13 files changed, 17 insertions(+), 10 deletions(-) diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index bf0f2e8588..783e92dd2a 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -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] diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index ac3c25766d..09a945b120 100755 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -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" diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index fd6c16cee3..afb4a8d110 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -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. diff --git a/actionpack/Rakefile b/actionpack/Rakefile index dcd91920a3..adafdf728a 100755 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -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" diff --git a/actionpack/install.rb b/actionpack/install.rb index d1fa377732..5bdad9e2cd 100644 --- a/actionpack/install.rb +++ b/actionpack/install.rb @@ -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 diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index b338ef3037..4ebd49f333 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -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] diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 610a5d38f1..b1b865bd2e 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -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[ diff --git a/activerecord/install.rb b/activerecord/install.rb index 1c6c15979c..6ffb2ef064 100644 --- a/activerecord/install.rb +++ b/activerecord/install.rb @@ -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 - diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 98065015cb..6ece5cece4 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -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) diff --git a/railties/Rakefile b/railties/Rakefile index ae82f5870c..386b78cdb2 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -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 diff --git a/railties/environments/development.rb b/railties/environments/development.rb index 42a43d59fb..d3681e28ca 100644 --- a/railties/environments/development.rb +++ b/railties/environments/development.rb @@ -1,3 +1,4 @@ Dependencies.mechanism = :load ActionController::Base.consider_all_requests_local = true +ActionController::Base.perform_caching = false BREAKPOINT_SERVER_PORT = 42531 \ No newline at end of file diff --git a/railties/environments/production.rb b/railties/environments/production.rb index 2069ebcf15..b464250bef 100644 --- a/railties/environments/production.rb +++ b/railties/environments/production.rb @@ -1,2 +1,3 @@ Dependencies.mechanism = :require ActionController::Base.consider_all_requests_local = false +ActionController::Base.perform_caching = true \ No newline at end of file diff --git a/railties/environments/test.rb b/railties/environments/test.rb index d4db0e9c64..8aa4c65af2 100644 --- a/railties/environments/test.rb +++ b/railties/environments/test.rb @@ -1,3 +1,4 @@ Dependencies.mechanism = :require ActionController::Base.consider_all_requests_local = true +ActionController::Base.perform_caching = false ActionMailer::Base.delivery_method = :test \ No newline at end of file -- cgit v1.2.3