1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Update activesupport/CHANGELOG.md

This commit is contained in:
José Valim 2012-07-31 15:48:17 +03:00
parent 13af5aceff
commit 0e3c66691a

View file

@ -1,5 +1,7 @@
## Rails 4.0.0 (unreleased) ##
* Inflections can now be defined per locale. `singularize` and `pluralize` accept locale as an extra argument. *David Celis*
* `Object#try` will now return nil instead of raise a NoMethodError if the receiving object does not implement the method, but you can still get the old behavior by using the new `Object#try!` *DHH*
* `Time#change` now works with time values with offsets other than UTC or the local time zone. *Andrew White*