diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-04 12:35:10 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-04 12:35:10 +0000 |
commit | f2e6945b25d92d5a4a00e5678d8515ae35cd24bb (patch) | |
tree | cf1022909d67ed4b464a73492ab468d66bc9fc14 /railties | |
parent | 2afdf01e5c354bdc49b1d1329333a01b7012134b (diff) | |
download | rails-f2e6945b25d92d5a4a00e5678d8515ae35cd24bb.tar.gz rails-f2e6945b25d92d5a4a00e5678d8515ae35cd24bb.tar.bz2 rails-f2e6945b25d92d5a4a00e5678d8515ae35cd24bb.zip |
Prepared for release of 0.9.3
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@333 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/CHANGELOG | 16 | ||||
-rw-r--r-- | railties/Rakefile | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 6027d52a67..8ba416e378 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,12 +1,14 @@ -*SVN* +*0.9.3* (January 4th, 2005) * Added support for SQLite in the auto-dumping/importing of schemas for development -> test #416 -* Fixed problems with dependency caching and controller hierarchies on Ruby 1.8.2 in development mode #351 - * Added automated rewriting of the shebang lines on installs through the gem rails command #379 [Manfred Stienstra] -* Fixed that generated action_mailers doesnt need to require the action_mailer since thats already done in the environment #382 [Lucas Carlson] +* Added ActionMailer::Base.deliver_method = :test to the test environment so that mail objects are available in ActionMailer::Base.deliveries + for functional testing. + +* Added protection for creating a model through the generators with a name of an existing class, like Thread or Date. + It'll even offer you a synonym using wordnet.princeton.edu as a look-up. No, I'm not kidding :) [Florian Gross] * Fixed dependency management to happen in a unified fashion for Active Record and Action Pack using the new Dependencies module. This means that the environment options needs to change from: @@ -25,11 +27,9 @@ Now in production.rb and test.rb: Dependencies.mechanism = :require -* Added ActionMailer::Base.deliver_method = :test to the test environment so that mail objects are available in ActionMailer::Base.deliveries - for functional testing. +* Fixed problems with dependency caching and controller hierarchies on Ruby 1.8.2 in development mode #351 -* Added protection for creating a model through the generators with a name of an existing class, like Thread or Date. - It'll even offer you a synonym using wordnet.princeton.edu as a look-up. No, I'm not kidding :) [Florian Gross] +* Fixed that generated action_mailers doesnt need to require the action_mailer since thats already done in the environment #382 [Lucas Carlson] *0.9.2* diff --git a/railties/Rakefile b/railties/Rakefile index 7370df8483..0fd4230f7d 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.2' + PKG_BUILD +PKG_VERSION = '0.9.3' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" |