Releases: natefaubion/purescript-tidy
Releases · natefaubion/purescript-tidy
v0.11.0
What's Changed
- Add shebang support by @natefaubion in #121
v0.10.0
- Adds support for type application syntax
v0.9.0
- Updated to use ES modules internally (@thomashoneyman)
- Fixes issue with negative type-level integers (@thomashoneyman)
v0.8.0
- Updated for PureScript 0.15 syntax (dropped
ExportKind
,ImportKind
, andTypeUnaryRow
and addedTypeInt
, as well as regenerating operators) (@natefaubion in #94)
v0.7.2
v0.7.1
- Update parser version for improved performance.
v0.7.0
- Don't attempt to format files which contain parse errors (@i-am-the-slime).
- Fixes an issue with extra newlines and indentation for some multi-line signatures (#79).
v0.6.4
- Fixes issue with reading over stdin that could split multi-byte code points, resulting in mangled output. (@nwolverson)
v0.6.3
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 }
v0.6.0
- Adds
--import-sort-ide
option to sort imports likepurs ide
.