Compatibility with v0.6
This release introduces breaking changes for compatibility with Julia v0.6:
-
The syntax for elementwise multiplication, division, and exponentiation has changed. In place of
x .* y
the syntax is now
dot(*)(x, y)
Explicitly calling
broadcast(*, x, y)
also works. Similarly, elementwise division is invoked asdot(/), and elementwise exponentiation isdot(^). -
The previous syntax (
.*,./, and.^) still works on earlier versions of Julia. -
We also fixed some deprecation warnings.