Skip to content

v0.53.2

Compare
Choose a tag to compare
@gazerro gazerro released this 20 Oct 15:02
· 102 commits to main since this release

Optimizations

  • compiler/emitter: optimize {{ render .. }}

    This change optimizes the show statement with a render expression, generating fewer virtual machine instructions and fewer memory allocations.

Fixes

  • cmd/scriggo: fix package name in file generated by the Import command

    The scriggo command could generate an invalid Go file.
    Thanks to @traetox for the contribution.

  • compiler,runtime: fix builtin delete when key value has Scriggo type

    Using the delete builtin with a type declared in the interpreted source code, a runtime panic occurred.