Skip to content

Commit

Permalink
Fix JuliaLang#18189 (Add deprecation of etc. to NEWS)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonEdwards committed Aug 26, 2016
1 parent 2961c4d commit e390936
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,16 @@ Deprecated or removed
* The no-op `transpose` fallback has been deprecated. Consider introducing suitable
`transpose` methods or calling `permutedims(x, [2,1])` ([#13171], [#17075], [#17374]).

* The following macros have been deprecated ([#18189]):
* `@windows` is deprecated in favor of `@static is_windows()`
* `@unix` is deprecated in favor of `@static is_unix()`
* `@osx` is deprecated in favor of `@static is_apple()`
* `@linux` is deprecated in favor of `@static is_linux()`
* `@windows_only` is deprecated in favor of `@static if is_windows()`
* `@unix_only` is deprecated in favor of `@static if is_unix()`
* `@osx_only` is deprecated in favor of `@static if is_apple()`
* `@linux_only` is deprecated in favor of `@static if is_linux()`

Command-line option changes
---------------------------

Expand Down

0 comments on commit e390936

Please sign in to comment.