Skip to content

Compatibility with v0.6

Choose a tag to compare

@madeleineudell madeleineudell released this 21 Jun 15:09
· 453 commits to master since this release

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 as dot(/), and elementwise exponentiation is dot(^).

  • The previous syntax (.*, ./, and .^) still works on earlier versions of Julia.

  • We also fixed some deprecation warnings.