Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add NEWS.md entry for dep of getindex(::Tuple, ::AbstractArray{_,N}) where N>1 #21988

Merged
merged 1 commit into from
May 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,11 @@ Deprecated or removed

* `broadcast_zpreserving` has been deprecated ([#19533], [#19720]).

* Methods allowing indexing of tuples by `AbstractArray`s with more than one dimension
have been deprecated. (Indexing a tuple by such a higher-dimensional `AbstractArray`
should yield a tuple with more than one dimension, but tuples are one-dimensional.)
([#19737]).

* `@test_approx_eq a b` has been deprecated in favor of `@test a ≈ b` (or,
equivalently, `@test ≈(a, b)` or `@test isapprox(a, b)`).
`@test_approx_eq_eps` has been deprecated in favor of new `@test` syntax:
Expand Down Expand Up @@ -685,6 +690,7 @@ Command-line option changes
[#19721]: https://github.com/JuliaLang/julia/issues/19721
[#19722]: https://github.com/JuliaLang/julia/issues/19722
[#19724]: https://github.com/JuliaLang/julia/issues/19724
[#19737]: https://github.com/JuliaLang/julia/issues/19737
[#19741]: https://github.com/JuliaLang/julia/issues/19741
[#19771]: https://github.com/JuliaLang/julia/issues/19771
[#19779]: https://github.com/JuliaLang/julia/issues/19779
Expand Down