summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS11
1 files changed, 10 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 49cd303d46..fe63757539 100644
--- a/NEWS
+++ b/NEWS
@@ -83,7 +83,16 @@ with all sufficient information, see the ChangeLog file.
* Process
* Process#maxgroups and Process#maxgroups= now raise NotImplementedError if
the platform don't support supplementary groups concept.
-
+
+ * bigdecimal
+ * Kernel.BigDecimal and BigDecimal.new now accept instances of Integer,
+ Rational, and Float. If you pass a Rational or a Float to them, you must
+ specify the precision to produce the digits of a BigDecimal.
+
+ * The behavior of BigDecimal#coerce with a Rational is changed. It uses
+ the precision of the receiver BigDecimal to produce the digits of a
+ BigDecimal from the given Rational.
+
* io/console
* new methods:
* IO#noecho {|io| }