Skip to content

0.2.8

Compare
Choose a tag to compare
@max-sixty max-sixty released this 11 Oct 01:12
· 2754 commits to main since this release
1e3c163

0.2.8 is another modest release with some fixes, doc improvements, bindings improvements, and lots of internal changes. Note that one of the fixes causes the behavior of round and cast to change slightly — though it's handled as a fix rather than a breaking change in semantic versioning.

Fixes:

  • Change order of the round & cast function parameters to have the column last; for example round 2 foo_col / cast int foo. This is consistent with other functions, and makes piping possible:

    derive [
      gross_salary = (salary + payroll_tax | as int),
      gross_salary_rounded = (gross_salary | round 0),
    ]

Documentation:

Web:

Integrations:

  • Expose a shortened error message, in particular for the VSCode extension (@aljazerzen, #1005)

Internal changes: