From 04398a2880c1796808eeba9a0cec306828b11720 Mon Sep 17 00:00:00 2001 From: Sacha Verweij Date: Fri, 12 May 2017 22:55:04 -0700 Subject: [PATCH] Add NEWS.md entry for removal of the /(::Integer, ::Integer) fallback (#19779). (#21815) (cherry picked from commit 03721cbe6940403edf81ec667d3e0b610ceb8128) --- NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NEWS.md b/NEWS.md index c129650c216e3..d81691d01b243 100644 --- a/NEWS.md +++ b/NEWS.md @@ -229,6 +229,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]). @@ -522,6 +526,7 @@ Deprecated or removed [#19724]: https://github.com/JuliaLang/julia/issues/19724 [#19741]: https://github.com/JuliaLang/julia/issues/19741 [#19771]: https://github.com/JuliaLang/julia/issues/19771 +[#19779]: https://github.com/JuliaLang/julia/issues/19779 [#19784]: https://github.com/JuliaLang/julia/issues/19784 [#19786]: https://github.com/JuliaLang/julia/issues/19786 [#19787]: https://github.com/JuliaLang/julia/issues/19787