Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

dagger-codegen v0.2.5

Compare
Choose a tag to compare
@kjuulh kjuulh released this 19 Feb 21:44
· 101 commits to main since this release
0499024

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

Commit Details

view details
  • Uncategorized
    • add documentation strings (978ede6)
    • Use async runtime instead of blocking. (9be6f43)