mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add more information to the CHANGELOG entry [ci skip]
This commit is contained in:
parent
a06623609e
commit
51e963790f
1 changed files with 12 additions and 0 deletions
|
@ -2,6 +2,18 @@
|
|||
|
||||
* Added `ActiveSupport::TimeWithZone#to_r` for `Time#at` compatibility.
|
||||
|
||||
Before this change:
|
||||
|
||||
Time.zone = 'Tokyo'
|
||||
time = Time.zone.now
|
||||
time == Time.at(time) # => false
|
||||
|
||||
After the change:
|
||||
|
||||
Time.zone = 'Tokyo'
|
||||
time = Time.zone.now
|
||||
time == Time.at(time) # => true
|
||||
|
||||
*stopdropandrew*
|
||||
|
||||
* `ActiveSupport::NumberHelper#number_to_human` returns the number unaltered when
|
||||
|
|
Loading…
Reference in a new issue