aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-03-06 08:28:23 +0100
committerYves Senn <yves.senn@gmail.com>2013-03-06 08:28:23 +0100
commitf8b0e549398af74d4cb8ea995d5286bf9571acf0 (patch)
tree4cf195eada7e9571ecf0da15b43f31e9d5701ac9 /activesupport
parentee169329a898d993f0d024af6cce83649fb2f733 (diff)
downloadrails-f8b0e549398af74d4cb8ea995d5286bf9571acf0.tar.gz
rails-f8b0e549398af74d4cb8ea995d5286bf9571acf0.tar.bz2
rails-f8b0e549398af74d4cb8ea995d5286bf9571acf0.zip
CHANGELOG entry for improved singularizing of singulars.
Closes #9559. The actual patch was added with #4719
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md15
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.