Skip to content

Commit

Permalink
Add NEWS.md entry for test_approx_eq[_eps] deprecations (#19901). (#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
Sacha0 authored and tkelman committed May 12, 2017
1 parent 4ecbe49 commit 4c05eb2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,14 @@ Deprecated or removed
* `broadcast_zpreserving` has been deprecated ([#19533], [#19720]).
* `@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:
`@test` now supports the syntax `@test f(args...) key=val ...` for
`@test f(args..., key=val...)`. This syntax allows, for example, writing
`@test a ≈ b atol=c` in place of `@test ≈(a, b, atol=c)` (and hence
`@test_approx_eq_eps a b c`) ([#19901]).
* `convert` methods from `Diagonal` and `Bidiagonal` to subtypes of
`AbstractTriangular` have been deprecated ([#17723]).
Expand Down Expand Up @@ -543,6 +551,7 @@ Deprecated or removed
[#19811]: https://github.com/JuliaLang/julia/issues/19811
[#19841]: https://github.com/JuliaLang/julia/issues/19841
[#19900]: https://github.com/JuliaLang/julia/issues/19900
[#19901]: https://github.com/JuliaLang/julia/issues/19901
[#19903]: https://github.com/JuliaLang/julia/issues/19903
[#19919]: https://github.com/JuliaLang/julia/issues/19919
[#19926]: https://github.com/JuliaLang/julia/issues/19926
Expand Down

0 comments on commit 4c05eb2

Please sign in to comment.