PureScript v0.15.14 released

PureScript v0.15.14 has been released!

This release addresses some high-memory-usage issues in the compiler

Thank you all who contributed!

Full release notes below:

13 Likes

Is it possible that in those high-memory cases the time performance would also improve?

Yes, reducing memory usage makes it a lot faster because GHC’s garbage collection takes so much of the runtime (~50% in my tests). And avoiding swap is great for performance (this also is compounded by garbage collection making it thrash back through the swap).

3 Likes

Thank you, that is very exciting!

2 Likes