From a1887afc8b51f61491ba7f13c5e7a5b7619623c4 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sun, 19 Feb 2023 21:48:55 +0100 Subject: [PATCH] Release dagger-sdk v0.2.7 --- Cargo.lock | 36 +++++++++++------------ crates/dagger-sdk/CHANGELOG.md | 53 +++++++++++++++++++++++++++++++++- crates/dagger-sdk/Cargo.toml | 2 +- 3 files changed, 71 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ae8936d..29eab45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,7 +114,7 @@ version = "0.1.0" dependencies = [ "clap", "color-eyre", - "dagger-sdk 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "dagger-sdk 0.2.6", "eyre", ] @@ -331,6 +331,23 @@ dependencies = [ [[package]] name = "dagger-sdk" version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "654625e954f59d70eb897bb681936c3e8b69c5f6e528f85c0b307554883db63f" +dependencies = [ + "base64", + "dagger-core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_builder", + "eyre", + "futures", + "gql_client", + "serde", + "serde_json", + "tokio", +] + +[[package]] +name = "dagger-sdk" +version = "0.2.7" dependencies = [ "base64", "dagger-core 0.2.2", @@ -346,23 +363,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "dagger-sdk" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "654625e954f59d70eb897bb681936c3e8b69c5f6e528f85c0b307554883db63f" -dependencies = [ - "base64", - "dagger-core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_builder", - "eyre", - "futures", - "gql_client", - "serde", - "serde_json", - "tokio", -] - [[package]] name = "darling" version = "0.14.3" diff --git a/crates/dagger-sdk/CHANGELOG.md b/crates/dagger-sdk/CHANGELOG.md index 2d778cf..7e252fd 100644 --- a/crates/dagger-sdk/CHANGELOG.md +++ b/crates/dagger-sdk/CHANGELOG.md @@ -5,6 +5,56 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v0.2.7 (2023-02-19) + +### Documentation + + - change to await syntax + +### New Features + + - Use async runtime instead of blocking. + Default to using async runtime instead of blocking. I.e. + + ```rust + 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](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - change to await syntax ([`93f40b3`](https://github.com/kjuulh/dagger-rs/commit/93f40b356c48f14e910968516bed9487912095c1)) + - Use async runtime instead of blocking. ([`9be6f43`](https://github.com/kjuulh/dagger-rs/commit/9be6f435d9ea39f31a8906e55dbd3e8b1e5ec598)) +
+ ## v0.2.6 (2023-02-19) ### Documentation @@ -15,7 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - 1 commit contributed to the release. + - 2 commits contributed to the release. - 1 commit was understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages @@ -26,6 +76,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** + - Release dagger-sdk v0.2.6 ([`c312bc5`](https://github.com/kjuulh/dagger-rs/commit/c312bc57ad3e5380b6a2a927f3bb758aa5344efd)) - fix readme ([`04e70ce`](https://github.com/kjuulh/dagger-rs/commit/04e70ce964b343e28b3dbd0c46d10ccda958ab8c))
diff --git a/crates/dagger-sdk/Cargo.toml b/crates/dagger-sdk/Cargo.toml index b023686..df7d6ae 100644 --- a/crates/dagger-sdk/Cargo.toml +++ b/crates/dagger-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-sdk" -version = "0.2.6" +version = "0.2.7" edition = "2021" readme = "README.md" license-file = "LICENSE.MIT"