Skip to content

v0.2.0

Compare
Choose a tag to compare
@machow machow released this 29 Mar 19:07
· 175 commits to main since this release
29595a6

What's Changed

  • Refactor siu submodule (#338)
    • made siu.py a folder, split into different submodules for visitors, dispatchers, calls, etc..
  • feat(ci): publish main branch docs to netlify (#395)
  • docs(siu): flesh out docs for calls, symbolics, dispatchers (#397)
  • ci: Pin setup-gcloud to v0 instead of master (#405)
  • feat: use codata dispatch in SQL translation (#398)
    • all sql column operation concrete signatures changed, to allow operations in operations
    • old:
    @mean.register
    def _mean(col: SqlColumn): ...
    • new:
    @mean.register
    def _mean(codata: SqlColumn, col): ...
  • feat: support sqlite window functions (#406)
  • ci: bigquery tests run in parallel. Reduces time from 15 mins to about 2 mins.