This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
dagger-codegen v0.2.5
kjuulh
released this
19 Feb 21:44
·
101 commits
to main
since this release
New Features
-
add documentation strings
-
Use async runtime instead of blocking.
Default to using async runtime instead of blocking. I.e.fn main() -> eyre::Result<()> { // ... client.container().from("rust").publish("somewhere")?; // ... } // to async fn main() -> eyre::Result<()> { // ... client.container().from("rust").publish("somewhere").await?; // ... }
Commit Statistics
- 2 commits contributed to the release.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages