From f01ea82fad2d1c9976f94273034bec518b93ff80 Mon Sep 17 00:00:00 2001 From: Sacha Verweij Date: Thu, 11 May 2017 18:55:57 -0700 Subject: [PATCH] Add NEWS.md entry for removal of the /(::Integer, ::Integer) fallback (#19779). --- NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NEWS.md b/NEWS.md index 9029abc7acc99..64e2bab0f6223 100644 --- a/NEWS.md +++ b/NEWS.md @@ -223,6 +223,10 @@ This section lists changes that do not have deprecation warnings. * `write` on an `IOBuffer` now returns a signed integer in order to be consistent with other buffers ([#20609]). + * The `<:Integer` division fallback `/(::Integer, ::Integer)`, which formerly + inappropriately took precedence over other division methods for some + mixed-integer-type division calls, has been removed ([#19779]). + * `@async`, `@spawn`, `@spawnat`, `@fetch` and `@fetchfrom` no longer implicitly localize variables. Previously, the expression would be wrapped in an implicit `let` block ([#19594]). @@ -481,6 +485,7 @@ Deprecated or removed [#19722]: https://github.com/JuliaLang/julia/issues/19722 [#19724]: https://github.com/JuliaLang/julia/issues/19724 [#19741]: https://github.com/JuliaLang/julia/issues/19741 +[#19779]: https://github.com/JuliaLang/julia/issues/19779 [#19784]: https://github.com/JuliaLang/julia/issues/19784 [#19787]: https://github.com/JuliaLang/julia/issues/19787 [#19791]: https://github.com/JuliaLang/julia/issues/19791