Skip to content

v0.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Mar 03:10
· 229 commits to main since this release
8aa6795

v0.3.0 introduces a new SDK feature called batch, allowing you to build a batch of functions to be dispatched and executed concurrently.

@dispatch.function
def funcA(): ...

@dispatch.function
def funcB(someargs): ...

batch = dispatch.batch()
batch.add(funcA)
batch.add(funcB, someargs)

batch.dispatch()

Take a look at the documentation to learn about the different SDK features: Workflow as code!

Happy building!

What's Changed

New features

Documentation

Other changes

Full Changelog: v0.2.1...v0.3.0