Skip to content

Commit

Permalink
add NEWS entry for JuliaLang#11891
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebolewski committed Jul 1, 2015
1 parent 3aed3f5 commit fe7203e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,22 @@ Library improvements
Deprecated or removed
---------------------

* several syntax whitespace insensitivities have been deprecated ([#11891]).
```julia
# function call
f (x)

# getindex
x [17]
rand(2) [1]

# function definition
f (x) = x^2
function foo (x)
x^2
end
```

* indexing with Reals that are not subtypes of Integers (Rationals, FloatingPoint, etc.) has been deprecated ([#10458]).

* `push!(A)` has been deprecated, use `append!` instead of splatting arguments to `push!` ([#10400]).
Expand Down Expand Up @@ -1487,4 +1503,5 @@ Too numerous to mention.
[#11379]: https://github.com/JuliaLang/julia/issues/11379
[#11432]: https://github.com/JuliaLang/julia/issues/11432
[#11741]: https://github.com/JuliaLang/julia/issues/11741
[#11891]: https://github.com/JuliaLang/julia/issues/11891
[#11922]: https://github.com/JuliaLang/julia/issues/11922

0 comments on commit fe7203e

Please sign in to comment.