From 52769c116b5b06c3718220b16e8454646015288a Mon Sep 17 00:00:00 2001 From: Sacha Verweij Date: Sun, 14 May 2017 14:47:01 -0700 Subject: [PATCH] Add NEWS.md entry for delete!(::EnvHash, ::AbstractString, def) dep (#18012). --- NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NEWS.md b/NEWS.md index a061be22d4479..c96c9a56c3c57 100644 --- a/NEWS.md +++ b/NEWS.md @@ -455,6 +455,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]). * `Dates.recur` has been deprecated in favor of `filter` ([#19288]) @@ -559,6 +563,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