Skip to content

Commit

Permalink
Add NEWS item for expr? -> expr ? deprecation (#22619)
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan authored Jun 30, 2017
1 parent 92ff1bc commit 197ca1c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,10 @@ Deprecated or removed
* The `corrected` positional argument to `cov` has been deprecated in favor of
a keyword argument with the same name (#21709).

* Omitting a space between the condition and `?` in a ternary expression has been deprecated.
Ternaries must now include some amount of whitespace, e.g. `x ? a : b` rather than
`x? a : b` ([#22523]).


Julia v0.6.0 Release Notes
==========================
Expand Down Expand Up @@ -919,3 +923,4 @@ Command-line option changes
[#22228]: https://github.com/JuliaLang/julia/issues/22228
[#22245]: https://github.com/JuliaLang/julia/issues/22245
[#22310]: https://github.com/JuliaLang/julia/issues/22310
[#22523]: https://github.com/JuliaLang/julia/issues/22523

2 comments on commit 197ca1c

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @jrevels

Please sign in to comment.