This release provides the ability to decorate your async funcs with task(raw=True). This will pass through the task objects to the dependent tasks. This way if a dependency failed you can still run your dependent tasks, and it can try/except dep.result() and handle any errors as it sees fit.
0.3
Enable the ability to apply dependencies that aren't passed through function args. Also allow *args and **kwargs on task calls.
0.2
Updated readme
0.1
Initial Release of aiodag - includes working, but incomplete, task decorator and some usage examples