Skip to content

Releases: ponylang/peg

0.1.6

09 Jan 18:34
Compare
Choose a tag to compare

Add support for not colorizing the terminal output

Prior to this change any error message called via PegFormatError.console
would return an error message with ANSI escape sequence code for coloring. This
created a problem when piping the output to something other than a terminal.

This change adds the ability to remove ANSI escape sequence codes from the
output. The change is non-breaking as the default behavior is to colorize
the output. The colorization can be turned off by supplying false to
the colorize parameter:

PegFormatError.console(error, false)

[0.1.6] - 2024-01-09

Added

  • Add support for not outputting color to terminal (PR #44)

0.1.5

07 Oct 01:46
Compare
Choose a tag to compare

Update to work with Pony 0.56.3

Pony 0.56.3 has a bug fix that uncovered what should have been a compilation error in peg. We've updated to fix the error.

[0.1.5] - 2023-10-07

Fixed

  • Remove usage of a box inside a recover (PR #42)

0.1.4

26 Feb 13:39
Compare
Choose a tag to compare

Update to work with change Pony 0.49.0

The object capabilities system in the Pony standard library was reworked and we've updated to match it.

Update to work with ponytest name change in Pony 0.49.0

The Pony unit testing framework PonyTest had its package name renamed from ponytest to pony_test to match standard library naming conventions. We've updated to account for the new name.

[0.1.4] - 2022-02-26

Fixed

  • Update to address PonyTest package being renamed (PR #27)

Changed

  • Update to work with object capabilities changes in Pony 0.49.0 (PR #26)

0.1.3

16 Jan 03:39
Compare
Choose a tag to compare

Update to work with latest ponyc

The most recent ponyc implements RFC #65 which changes the type of Env.root.

We've updated accordingly. You won't be able to use this and future versions of the library without a corresponding update to your ponyc version.

[0.1.3] - 2022-01-16

Changed

  • Update for change in Env.root type (PR #24)

0.1.2

03 Sep 03:19
Compare
Choose a tag to compare

Updates to work with ponyc 0.44.0

RFC 70 resulted in breaking changes in ponyc. We've updated peg so that it works with ponyc 0.44.0.

[0.1.2] - 2021-09-03

Fixed

  • Update to work with ponyc 0.44.0 (PR #22)

0.1.1

08 Feb 22:04
Compare
Choose a tag to compare

Internal only release

This was release was purely for non-public facing changes.

[0.1.1] - 2021-02-08

0.1.0

06 May 14:13
Compare
Choose a tag to compare
Merge pull request #2 from jemc/master

Update for latest ponyc master (explicit partial calls).