Skip to content

Commit 197ca1c

Browse files
authoredJun 30, 2017
Add NEWS item for expr? -> expr ? deprecation (#22619)
1 parent 92ff1bc commit 197ca1c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎NEWS.md

+5
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ Deprecated or removed
120120
* The `corrected` positional argument to `cov` has been deprecated in favor of
121121
a keyword argument with the same name (#21709).
122122

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

124128
Julia v0.6.0 Release Notes
125129
==========================
@@ -919,3 +923,4 @@ Command-line option changes
919923
[#22228]: https://github.com/JuliaLang/julia/issues/22228
920924
[#22245]: https://github.com/JuliaLang/julia/issues/22245
921925
[#22310]: https://github.com/JuliaLang/julia/issues/22310
926+
[#22523]: https://github.com/JuliaLang/julia/issues/22523

2 commit comments

Comments
 (2)

nanosoldier commented on Jun 30, 2017

@nanosoldier
Collaborator

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

@nanosoldier runbenchmarks(ALL, isdaily = true)

nanosoldier commented on Jun 30, 2017

@nanosoldier
Collaborator

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

Please sign in to comment.