ruby-changes:57482
From: Nobuyoshi <ko1@a...>
Date: Mon, 2 Sep 2019 14:39:14 +0900 (JST)
Subject: [ruby-changes:57482] Nobuyoshi Nakada: e9b271d1e2 (master): Get rid of interpreting BTS references as label-list [ci skip]
https://git.ruby-lang.org/ruby.git/commit/?id=e9b271d1e2 From e9b271d1e2251a2e2f613431ae2d9eb2a14ba0a9 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Mon, 2 Sep 2019 14:31:22 +0900 Subject: Get rid of interpreting BTS references as label-list [ci skip] diff --git a/NEWS b/NEWS index 260ba0b..baebe5c 100644 --- a/NEWS +++ b/NEWS @@ -19,8 +19,9 @@ sufficient information, see the ChangeLog file or Redmine https://github.com/ruby/ruby/blob/trunk/NEWS#L19 * Method reference operator, <code>.:</code> is introduced as an experimental feature. [Feature #12125] [Feature #13581] -* Preparations for the redesign of keyword arguments towards Ruby 3. - [Feature #14183] +* Preparations for the redesign of keyword arguments towards + Ruby 3. [Feature #14183] + * Automatic conversion from a Hash to keyword arguments is deprecated: when a method call passes a Hash at the last argument, and when the called method accepts keywords, it is warned. @@ -35,8 +36,8 @@ sufficient information, see the ChangeLog file or Redmine https://github.com/ruby/ruby/blob/trunk/NEWS#L36 def foo(**kw); p kw; end; foo("str" => 1) #=> {"str"=>1} -* Automatic conversion of keyword arguments and positional ones is warned. - [Feature #14183] +* Automatic conversion of keyword arguments and positional ones is + warned. [Feature #14183] * Proc.new and proc with no block in a method called with a block is warned now. @@ -76,8 +77,7 @@ Complex:: https://github.com/ruby/ruby/blob/trunk/NEWS#L77 New method:: - * Added Complex#<=>. So 0 <=> 0i will not raise NoMethodError. - [Bug #15857] + * Added Complex#<=>. So 0 <=> 0i will not raise NoMethodError. [Bug #15857] Encoding:: @@ -263,8 +263,8 @@ open-uri:: https://github.com/ruby/ruby/blob/trunk/NEWS#L263 * Warn open-uri's "open" method at Kernel. Use URI.open instead. [Misc #15893] - * The default charset of text/* media type is UTF-8 instead of ISO-8859-1. - [Bug #15933] + * The default charset of text/* media type is UTF-8 instead of + ISO-8859-1. [Bug #15933] Pathname:: -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/