From b16058d3ea5ab70091d4b4c6acb1286f6567c2ab Mon Sep 17 00:00:00 2001 From: Sacha Verweij Date: Thu, 11 May 2017 19:08:34 -0700 Subject: [PATCH] Add NEWS.md entry for deprecation of invoke's tuple-of-types form (#18444). --- NEWS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS.md b/NEWS.md index 9029abc7acc99..70dc9b83b110c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -401,6 +401,9 @@ Deprecated or removed * `isimag` has been deprecated ([#19949]). + * The tuple-of-types form of `invoke`, `invoke(f, (types...), ...)`, has been deprecated + in favor of the tuple-type form `invoke(f, Tuple{types...}, ...)` ([#18444]). + * `broadcast_zpreserving` has been deprecated ([#19533], [#19720]). * `convert` methods from `Diagonal` and `Bidiagonal` to subtypes of @@ -438,6 +441,7 @@ Deprecated or removed [#18339]: https://github.com/JuliaLang/julia/issues/18339 [#18346]: https://github.com/JuliaLang/julia/issues/18346 [#18442]: https://github.com/JuliaLang/julia/issues/18442 +[#18444]: https://github.com/JuliaLang/julia/issues/18444 [#18453]: https://github.com/JuliaLang/julia/issues/18453 [#18457]: https://github.com/JuliaLang/julia/issues/18457 [#18473]: https://github.com/JuliaLang/julia/issues/18473