v0.11.1
·
55 commits
to main
since this release
Frame v0.11.1 Release Notes
We're thrilled to introduce Frame v0.11.1, featuring a range of exciting enhancements to the Frame language, offering increased power and standardization to the notation. This release also includes a significant improvement to the transpiler, now allowing input from stdin in addition to accepting file paths, thus enhancing integration with CI/CD processes involving Frame.
Changelog
(Note: The enhanced language features are currently supported in Python 3, with plans to extend support to other languages in upcoming releases.)
- Fixed Code Generation Issue: Addressed a bug that was affecting code generation, ensuring a smoother experience for users.
Stdin support
The CLI has been updated to support stdin:
framec -language python_3 < HelloWorld.frm > HelloWorld.rs
or
cat HellowWorld.frm | framec -language python_3 > HellowWorld.go