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

NEWS: Fix the default rounding mode

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mrkn 2016-12-15 16:08:33 +00:00
parent 2d6538a7c8
commit 9f5a161d2e

6
NEWS
View file

@ -74,7 +74,7 @@ with all sufficient information, see the ChangeLog file or Redmine
digits, as well as Float#round. [Feature #12245]
* Float#round now takes an optional keyword argument, half option, and
the default behavior is round-to-nearest-even now. [Bug #12548]
the default behavior is round-up. [Bug #12548] [Bug #12958]
half option can be one of :even, :up, and :down. [Feature #12953]
* Hash
@ -92,7 +92,7 @@ with all sufficient information, see the ChangeLog file or Redmine
* Integer#digits for extracting columns of place-value notation [Feature #12447]
* Integer#round now takes an optional keyword argument, half option, and the
default behavior is round-to-nearest-even now. [Bug #12548]
default behavior is round-up now. [Bug #12548] [Bug #12958]
half option can be one of :even, :up, and :down. [Feature #12953]
* IO
@ -127,7 +127,7 @@ with all sufficient information, see the ChangeLog file or Redmine
* Rational
* Rational#round now takes an optional keyword argument, half option, and
the default behavior is round-to-nearest-even now. [Bug #12548]
the default behavior is round-up now. [Bug #12548] [Bug #12958]
half option can be one of :even, :up, and :down. [Feature #12953]
* Regexp