From d19cd5e194ec4deec9333f9e582e7454ca397cc9 Mon Sep 17 00:00:00 2001 From: Sacha Verweij Date: Tue, 16 May 2017 02:06:21 -0700 Subject: [PATCH] Add NEWS.md entry for delete!(::EnvHash, ::AbstractString, def) dep (#18012). (#21881) (cherry picked from commit 379ae499edaba942c83ca2301c47ecacc7edbe57) --- NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NEWS.md b/NEWS.md index 0fdcf65aaf3fd..3facf254828c7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -418,6 +418,10 @@ Deprecated or removed * `num` and `den` have been deprecated in favor of `numerator` and `denominator` respectively ([#19233]). + * `delete!(ENV::EnvHash, k::AbstractString, def)` has been deprecated in favor of + `pop!(ENV, k, def)`. Be aware that `pop!` returns `k` or `def`, whereas `delete!` + returns `ENV` or `def` ([#18012]). + * infix operator `$` has been deprecated in favor of infix `⊻` or function `xor()` ([#18977]). * The single-argument form of `write` (`write(x)`, with implicit `STDOUT` output stream), @@ -539,6 +543,7 @@ Command-line option changes [#17723]: https://github.com/JuliaLang/julia/issues/17723 [#17758]: https://github.com/JuliaLang/julia/issues/17758 [#17785]: https://github.com/JuliaLang/julia/issues/17785 +[#18012]: https://github.com/JuliaLang/julia/issues/18012 [#18050]: https://github.com/JuliaLang/julia/issues/18050 [#18159]: https://github.com/JuliaLang/julia/issues/18159 [#18251]: https://github.com/JuliaLang/julia/issues/18251