From ac8ebc19be69c907798e5146471aa0234396eb46 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 25 Jan 2005 20:10:24 +0000 Subject: Prepared for 0.9.5 release git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@515 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/CHANGELOG | 4 +++- railties/Rakefile | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'railties') diff --git a/railties/CHANGELOG b/railties/CHANGELOG index dd3c7381c1..f3e4c6c604 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*0.9.5* (January 25th, 2005) * 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. @@ -16,6 +16,8 @@ * Fixed that FCGI can also display SyntaxErrors +* Upgraded to Active Record 1.6.0, Action Pack 1.4.0 + *0.9.4.1* (January 18th, 2005) diff --git a/railties/Rakefile b/railties/Rakefile index 383a5b7a1f..2b3bbad905 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -9,7 +9,7 @@ require 'rbconfig' PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'rails' -PKG_VERSION = '0.9.4.1' + PKG_BUILD +PKG_VERSION = '0.9.5' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" @@ -247,8 +247,8 @@ spec = Gem::Specification.new do |s| EOF s.add_dependency('rake', '>= 0.4.15') - s.add_dependency('activerecord', '>= 1.5.1') - s.add_dependency('actionpack', '>= 1.3.1') + s.add_dependency('activerecord', '>= 1.6.0') + s.add_dependency('actionpack', '>= 1.4.0') s.add_dependency('actionmailer', '>= 0.6.1') s.has_rdoc = false -- cgit v1.2.3