From fc431c37ff8e9b7d53ffadba0cc3a676645b8826 Mon Sep 17 00:00:00 2001 From: "Jurgen J. Vinju" Date: Wed, 7 Feb 2024 10:26:26 +0100 Subject: [PATCH] added release notes --- RELEASE-NOTES | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 RELEASE-NOTES diff --git a/RELEASE-NOTES b/RELEASE-NOTES new file mode 100644 index 0000000..1eb2657 --- /dev/null +++ b/RELEASE-NOTES @@ -0,0 +1,9 @@ + +## 0.0.1 + +* python-air wraps "libast" from the Python standard library to parse Python code. + * generates a Python program that writes an AST as JSON to disk + * executes that Python program using util::ShellExec::exec + * reads the JSON and normalizes it towards a Rascal AST shape + * takes care to retain position information on all AST nodes +* this is quite experimental for now.