Skip to content

Commit

Permalink
Add NEWS.md entry noting need to quote special characters in Cmds (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
Sacha0 authored and tkelman committed May 12, 2017
1 parent 4ecdf95 commit 4ecbe49
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 @@ -449,6 +449,10 @@ Deprecated or removed
* `convert` methods from `Diagonal` and `Bidiagonal` to subtypes of
`AbstractTriangular` have been deprecated ([#17723]).

* Special characters (`#{}()[]<>|&*?~;`) should now be quoted in commands. For example,
``` `export FOO=1\;` ``` should replace ``` `export FOO=1;` ``` and
``` `cd $dir '&&' $thingie` ``` should replace ``` `cd $dir && $thingie` ``` ([#19786]).

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

Expand Down Expand Up @@ -531,6 +535,7 @@ Deprecated or removed
[#19741]: https://github.com/JuliaLang/julia/issues/19741
[#19771]: https://github.com/JuliaLang/julia/issues/19771
[#19784]: https://github.com/JuliaLang/julia/issues/19784
[#19786]: https://github.com/JuliaLang/julia/issues/19786
[#19787]: https://github.com/JuliaLang/julia/issues/19787
[#19791]: https://github.com/JuliaLang/julia/issues/19791
[#19800]: https://github.com/JuliaLang/julia/issues/19800
Expand Down

0 comments on commit 4ecbe49

Please sign in to comment.