From 405620ef5ef17d3ae87a8cf702e1e64c73c31c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogumi=C5=82=20Kami=C5=84ski?= Date: Tue, 13 Nov 2018 20:54:14 +0100 Subject: [PATCH 1/2] add news for new Char broadcasting --- NEWS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 851575c3d0702..ffb282bba6b7e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -14,7 +14,8 @@ Language changes returns a `BigFloat` with precision equal to `precision(BigFloat)` ([#29127]). * Parser inputs ending with a comma are now consistently treated as incomplete. Previously they were sometimes parsed as tuples, depending on whitespace ([#28506]). - * `Regex` now behave like a scalar when used in broadcasting ([#29913]). + * `Regex` now behaves like a scalar when used in broadcasting ([#29913]). + * `Char` now behaves like a 0-dimensional array ([#29819]). New library functions --------------------- From 6232a7181e51035f28cf2d8606109c7b06836634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogumi=C5=82=20Kami=C5=84ski?= Date: Wed, 14 Nov 2018 11:05:31 +0100 Subject: [PATCH 2/2] add read-only note --- NEWS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index ffb282bba6b7e..0b055422d28c0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -15,7 +15,7 @@ Language changes * Parser inputs ending with a comma are now consistently treated as incomplete. Previously they were sometimes parsed as tuples, depending on whitespace ([#28506]). * `Regex` now behaves like a scalar when used in broadcasting ([#29913]). - * `Char` now behaves like a 0-dimensional array ([#29819]). + * `Char` now behaves like a read-only 0-dimensional array ([#29819]). New library functions ---------------------