This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
Releases: kjuulh/dagger-sdk
Releases · kjuulh/dagger-sdk
dagger-core v0.2.6
Chore
- ran clippy
Bug Fixes
- cli session keep session alive
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
dagger-core v0.2.5
Bug Fixes
- race condition in process
Commit Statistics
- 1 commit contributed to the release.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
- Uncategorized
- race condition in process (a13a2a9)
dagger-core v0.2.4
Bug Fixes
- remove blocking
- remove blocking
Commit Statistics
- 3 commits contributed to the release.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
dagger-core v0.2.3
Bug Fixes
- Fix async panic on blocking #19
Replaced internal threads with tokio spawn functions
Commit Statistics
- 1 commit contributed to the release.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
dagger-codegen v0.2.7
Bug Fixes
- race condition in process
Commit Statistics
- 2 commits contributed to the release.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
dagger-codegen v0.2.6
Chore
- ran clippy
Commit Statistics
- 2 commits contributed to the release.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
v0.2.9
New Features
- re-export through lib.rs
this means that you can now use dagger_sdk::connect() instead of
dagger_sdk::client::connect();
Commit Statistics
- 1 commit contributed to the release.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
- Uncategorized
- re-export through lib.rs (19ed6c2)
v0.2.8
New Features
- with sccache
Commit Statistics
- 2 commits contributed to the release.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
dagger-sdk v0.2.8
New Features
- add documentation strings
Commit Statistics
- 1 commit contributed to the release.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
- Uncategorized
- add documentation strings (978ede6)
dagger-sdk v0.2.7
Documentation
- change to await syntax
New Features
-
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