Skip to content

Releases: natefaubion/purescript-tidy

v0.11.0

28 Feb 01:25

Choose a tag to compare

What's Changed

v0.10.0

01 Jun 21:51

Choose a tag to compare

  • Adds support for type application syntax

v0.9.0

16 May 20:01

Choose a tag to compare

v0.8.0

16 May 19:48

Choose a tag to compare

  • Updated for PureScript 0.15 syntax (dropped ExportKind, ImportKind, and TypeUnaryRow and added TypeInt, as well as regenerating operators) (@natefaubion in #94)

v0.7.2

04 Apr 16:42

Choose a tag to compare

  • Updates the parser to fix an issue which could result in dropping code containing a parse error (#91, #89)

v0.7.1

01 Mar 21:54

Choose a tag to compare

  • Update parser version for improved performance.

v0.7.0

22 Jan 20:49

Choose a tag to compare

  • 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

07 Dec 01:04

Choose a tag to compare

  • Fixes issue with reading over stdin that could split multi-byte code points, resulting in mangled output. (@nwolverson)

v0.6.3

18 Nov 17:25

Choose a tag to compare

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

16 Oct 21:14

Choose a tag to compare

  • Adds --import-sort-ide option to sort imports like purs ide.