diff options
author | Xavier Noria <fxn@hashref.com> | 2013-03-06 00:33:02 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-03-06 00:33:02 -0800 |
commit | 12f785fdc7c2a9461087a887a980dffcdd236f92 (patch) | |
tree | 4cf195eada7e9571ecf0da15b43f31e9d5701ac9 /activesupport | |
parent | ee169329a898d993f0d024af6cce83649fb2f733 (diff) | |
parent | f8b0e549398af74d4cb8ea995d5286bf9571acf0 (diff) | |
download | rails-12f785fdc7c2a9461087a887a980dffcdd236f92.tar.gz rails-12f785fdc7c2a9461087a887a980dffcdd236f92.tar.bz2 rails-12f785fdc7c2a9461087a887a980dffcdd236f92.zip |
Merge pull request #9581 from senny/9559_changelog_singularizing_singular
CHANGELOG entry for improved singularizing of singulars.
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index c47cb75274..9d26b8ba3e 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,11 +1,24 @@ ## Rails 4.0.0 (unreleased) ## * Fix deletion of empty directories in ActiveSupport::Cache::FileStore. - + *Charles Jones* ## Rails 4.0.0.beta1 (February 25, 2013) ## +* Improve singularizing a singular for multiple cases. + Fixes #2608 #1825 #2395. + + Example: + + # Before + 'address'.singularize # => 'addres' + + # After + 'address'.singularize # => 'address' + + *Mark McSpadden* + * Prevent `DateTime#change` from truncating the second fraction, when seconds do not need to be changed. |