From 8479b7b47250530219c5a2db4530442c27a191c6 Mon Sep 17 00:00:00 2001 From: Sacha Verweij Date: Tue, 23 May 2017 18:29:42 -0700 Subject: [PATCH] Add NEWS.md entry for takebuf_{array|string} deprecation (#19088). (#21975) (cherry picked from commit b7fdf5ce2a064c722f1f05e2d3c6644aba7560f6) --- NEWS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS.md b/NEWS.md index 006987c1929bf..7d2b21220bd74 100644 --- a/NEWS.md +++ b/NEWS.md @@ -537,6 +537,9 @@ Deprecated or removed `@test a ≈ b atol=c` in place of `@test ≈(a, b, atol=c)` (and hence `@test_approx_eq_eps a b c`) ([#19901]). + * `takebuf_array` has been deprecated in favor of `take!`, and `takebuf_string(x)` + has been deprecated in favor of `String(take!(x))` ([#19088]). + * `convert` methods from `Diagonal` and `Bidiagonal` to subtypes of `AbstractTriangular` have been deprecated ([#17723]). @@ -635,6 +638,7 @@ Command-line option changes [#18965]: https://github.com/JuliaLang/julia/issues/18965 [#18977]: https://github.com/JuliaLang/julia/issues/18977 [#19018]: https://github.com/JuliaLang/julia/issues/19018 +[#19088]: https://github.com/JuliaLang/julia/issues/19088 [#19157]: https://github.com/JuliaLang/julia/issues/19157 [#19233]: https://github.com/JuliaLang/julia/issues/19233 [#19239]: https://github.com/JuliaLang/julia/issues/19239