Skip to content

v0.6.3

Compare
Choose a tag to compare
@natefaubion natefaubion released this 18 Nov 17:25
· 37 commits to main since this release

Fixes anchoring of = in data and type declarations so you don't potentially (depending on source newlines) get:

type Foo
  =
  { bar :: Int }

But rather

type Foo =
  { bar :: Int }