Skip to content

Commit

Permalink
Add NEWS.md entry for zero-arg Channel constructor dep (#18832). (#21932
Browse files Browse the repository at this point in the history
)

(cherry picked from commit a72aad4)
  • Loading branch information
Sacha0 authored and tkelman committed Jun 2, 2017
1 parent fb3cdff commit effa3bb
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 @@ -527,6 +527,10 @@ Deprecated or removed
``` `export FOO=1\;` ``` should replace ``` `export FOO=1;` ``` and
``` `cd $dir '&&' $thingie` ``` should replace ``` `cd $dir && $thingie` ``` ([#19786]).

* Zero-argument `Channel` constructors (`Channel()`, `Channel{T}()`) have been deprecated
in favor of equivalents accepting an explicit `Channel` size
(`Channel(2)`, `Channel{T}(2)`) ([#18832]).

* The zero-argument constructor `MersenneTwister()` has been
deprecated in favor of the explicit `MersenneTwister(0)` ([#16984]).

Expand Down Expand Up @@ -590,6 +594,7 @@ Command-line option changes
[#18660]: https://github.com/JuliaLang/julia/issues/18660
[#18690]: https://github.com/JuliaLang/julia/issues/18690
[#18777]: https://github.com/JuliaLang/julia/issues/18777
[#18832]: https://github.com/JuliaLang/julia/issues/18832
[#18839]: https://github.com/JuliaLang/julia/issues/18839
[#18891]: https://github.com/JuliaLang/julia/issues/18891
[#18931]: https://github.com/JuliaLang/julia/issues/18931
Expand Down

0 comments on commit effa3bb

Please sign in to comment.