Skip to content

v0.11.2

Compare
Choose a tag to compare
@deepaksharmaongraph deepaksharmaongraph released this 13 Mar 11:29
· 22 commits to main since this release

Frame v0.11.2 Release Notes

We're thrilled to unveil Frame v0.11.2, packed with exciting enhancements to the Frame language, elevating its capabilities and standardization. This release also brings a notable upgrade to the transpiler, now facilitating input from stdin alongside file paths, thereby bolstering integration with CI/CD workflows that involve Frame.

Changelog

(Note: The enhanced language features are currently supported in Python 3, with plans to extend support to other languages in upcoming releases.)

  • Graphviz Integration: Replaced PlantUML with Graphviz for UML support, enhancing visualization capabilities.

Stdin support

The CLI has been updated to support stdin:

framec -language graphviz < HelloWorld.frm > HelloWorld.dot

or

cat HellowWorld.frm | framec -language graphviz > HellowWorld.dot