mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
NEWS: mention [Feature #12245]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54590 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e78beed499
commit
1826991f26
2 changed files with 14 additions and 1 deletions
|
@ -49,7 +49,7 @@ Wed Apr 13 15:56:35 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|||
well as Float#round. [Feature #12245]
|
||||
|
||||
* numeric.c (flo_floor): add an optional parameter, digits, as
|
||||
well as Integer#floor. [Feature #12245]
|
||||
well as Float#round. [Feature #12245]
|
||||
|
||||
* numeric.c (int_ceil): add an optional parameter, digits, as
|
||||
well as Integer#round. [Feature #12245]
|
||||
|
|
13
NEWS
13
NEWS
|
@ -20,6 +20,7 @@ with all sufficient information, see the ChangeLog file or Redmine
|
|||
=== Core classes updates (outstanding ones only)
|
||||
|
||||
* Array
|
||||
|
||||
* Array#max and Array#min. [Feature #12172]
|
||||
This may cause a tiny incompatibility: if you redefine
|
||||
Enumerable#max and call max to an Array, your redefinition will be
|
||||
|
@ -35,6 +36,16 @@ with all sufficient information, see the ChangeLog file or Redmine
|
|||
|
||||
* File.empty?. [Feature #9969]
|
||||
|
||||
* Float
|
||||
|
||||
* Float#ceil and Float#floor now take an optional digits, as well as
|
||||
Float#round. [Feature #12245]
|
||||
|
||||
* Integer
|
||||
|
||||
* Integer#ceil and Integer#floor now take an optional digits, as well
|
||||
as Integer#round. [Feature #12245]
|
||||
|
||||
* String
|
||||
|
||||
* String.new(capacity: size) [Feature #12024]
|
||||
|
@ -50,9 +61,11 @@ with all sufficient information, see the ChangeLog file or Redmine
|
|||
=== Stdlib updates (outstanding ones only)
|
||||
|
||||
* CSV
|
||||
|
||||
* Add a liberal_parsing option. [Feature #11839]
|
||||
|
||||
* optparse
|
||||
|
||||
* Add an into option. [Feature #11191]
|
||||
|
||||
=== Stdlib compatibility issues (excluding feature bug fixes)
|
||||
|
|
Loading…
Reference in a new issue