Skip to content

Nightly build

Pre-release
Pre-release
Compare
Choose a tag to compare
@maccallum maccallum released this 19 Jul 02:17
· 847 commits to master since this release

A number of bugfixes, notably, the o.expr parser will fail if there is a comma after the final expression. I.e.,

/foo = 10,
/bar = 20,

will fail due to the final comma---it needs to be

/foo = 10,
/bar = 20