aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-01 16:57:58 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-01 16:57:58 +0000
commit64612db7cf85aee8434e7b9b4fd8d6d0249c60e4 (patch)
treec58c03bf10907601c2e134068f53dfb0bd2fc05f /activesupport/CHANGELOG
parent5ddffc8c24635fe44cd66f78d7b5e2f7091e34d6 (diff)
downloadrails-64612db7cf85aee8434e7b9b4fd8d6d0249c60e4.tar.gz
rails-64612db7cf85aee8434e7b9b4fd8d6d0249c60e4.tar.bz2
rails-64612db7cf85aee8434e7b9b4fd8d6d0249c60e4.zip
Added new rules to the Inflector to deal with more unusual plurals mouse/louse => mice/lice, information => information, ox => oxen #1571 [foamdino@gmail.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1582 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index b73488f60e..aa9f5b887d 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added new rules to the Inflector to deal with more unusual plurals mouse/louse => mice/lice, information => information, ox => oxen #1571 [foamdino@gmail.com]
+
* Fixed memory leak with Object#remove_subclasses_of, which inflicted a Rails application running in development mode with a ~20KB leak per request #1289 [c.r.mcgrath@gmail.com]
* Made 1.year == 365.25.days to account for leap years. This allows you to do User.find(:all, :conditions => ['birthday > ?', 50.years.ago]) without losing a lot of days. #1488 [tuxie@dekadance.se]