aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-04 12:35:10 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-04 12:35:10 +0000
commitf2e6945b25d92d5a4a00e5678d8515ae35cd24bb (patch)
treecf1022909d67ed4b464a73492ab468d66bc9fc14 /railties/CHANGELOG
parent2afdf01e5c354bdc49b1d1329333a01b7012134b (diff)
downloadrails-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/CHANGELOG')
-rw-r--r--railties/CHANGELOG16
1 files changed, 8 insertions, 8 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*