Skip to content

Releases: ourPLCC/plcc

v8.0.1

25 May 14:39
17db76e
Compare
Choose a tag to compare
Revert "chore: bump action versions (#138)" (#140)

v8.0.0

28 Apr 18:04
c68bb6b
Compare
Choose a tag to compare
Merge pull request #122 from ourPLCC/reorg

refactor!: convert plcc.py to python package plcc

v7.0.0

20 Apr 15:53
62227a6
Compare
Choose a tag to compare
Merge pull request #117 from ourPLCC/include

refactor!: remove include and #include

v6.2.0

20 Apr 14:59
21022df
Compare
Choose a tag to compare
Merge pull request #116 from ourPLCC/include

feat: add %include

v6.1.5

02 Dec 21:10
Compare
Choose a tag to compare
Revert "fix: restore VERSION file"

This reverts commit 7747836b8ca4f5dd66692b19c8106c70efe2823e.

v6.1.4

02 Dec 20:50
Compare
Choose a tag to compare
fix: version bump

v6.1.3

02 Dec 20:36
Compare
Choose a tag to compare
fix: restore VERSION file

v6.1.2

02 Dec 16:57
1c44a19
Compare
Choose a tag to compare
fix: use REUSE Software for licensing (#93)

Closes #69

v6.1.1

01 Dec 00:18
24a7d3a
Compare
Choose a tag to compare
fix: improve installer 89 (#90)

We now ask users to place a callback into .bashrc or .zshrc.
That way upgrades that need a change in the environment
do not need to ask the user to update their .bashrc or .zshrc.

v6.1.0

29 Nov 20:24
559ff22
Compare
Choose a tag to compare
feat: print AST in JSON format (#68)

To print an AST for a program in JSON format, do the following.

    plccmk --json_ast GRAMMAR_FILE
    parse --json_ast < PROGRAM_FILE

Adds a new dependency: the Jackson JSON library for java.
We distribute jars (in src/lib) from the following projects
under the Apache 2.0 license:

* https://github.com/FasterXML/jackson-core
* https://github.com/FasterXML/jackson-databind
* https://github.com/FasterXML/jackson-annotations

If manually compiling and running the generated Java code,
you'll need to add these jars to your classpath.

If you don't use the new --json_ast option,
these jars do not need to be in your classpath.

---

Closes #53 - Add option to print parsejava to print ast in json

Co-authored-by: Madison Mason <[email protected]>
Co-authored-by: Rarity Van Lone <[email protected]>
Co-authored-by: Stoney Jackson <[email protected]>