From 76fab3f4662020c33af9b57daed715f6f65a8c7c Mon Sep 17 00:00:00 2001 From: kjuulh Date: Tue, 14 Mar 2023 15:00:47 +0100 Subject: [PATCH] Release dagger-sdk v0.2.19 --- Cargo.lock | 2 +- ci/Cargo.toml | 2 +- crates/dagger-sdk/CHANGELOG.md | 38 +++++++++++++++++++++++++++++++++- crates/dagger-sdk/Cargo.toml | 2 +- 4 files changed, 40 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eb20ab2..9b82330 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -309,7 +309,7 @@ dependencies = [ [[package]] name = "dagger-sdk" -version = "0.2.18" +version = "0.2.19" dependencies = [ "base64", "dagger-core", diff --git a/ci/Cargo.toml b/ci/Cargo.toml index 142b552..721dc9d 100644 --- a/ci/Cargo.toml +++ b/ci/Cargo.toml @@ -8,6 +8,6 @@ edition = "2021" [dependencies] clap = "4.1.6" color-eyre = "0.6.2" -dagger-sdk = { path = "../crates/dagger-sdk/", version = "^0.2.17" } +dagger-sdk = { path = "../crates/dagger-sdk/", version = "^0.2.19" } eyre = "0.6.8" tokio = { version = "1.25.0", features = ["full"] } diff --git a/crates/dagger-sdk/CHANGELOG.md b/crates/dagger-sdk/CHANGELOG.md index aa2ce2a..efdc0b8 100644 --- a/crates/dagger-sdk/CHANGELOG.md +++ b/crates/dagger-sdk/CHANGELOG.md @@ -6,8 +6,43 @@ 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.19 (2023-03-14) + +### Chore + + - fix release version + +### Bug Fixes + + - serialization of enum args for graphql + +### Commit Statistics + + + + - 2 commits contributed to the release. + - 2 commits were understood as [conventional](https://www.conventionalcommits.org). + - 1 unique issue was worked on: [#34](https://github.com/kjuulh/dagger-rs/issues/34) + +### Commit Details + + + +
view details + + * **[#34](https://github.com/kjuulh/dagger-rs/issues/34)** + - serialization of enum args for graphql ([`8fd6bb9`](https://github.com/kjuulh/dagger-rs/commit/8fd6bb983ef00b1aa2cf1ba3088028329033c38f)) + * **Uncategorized** + - fix release version ([`6629d2d`](https://github.com/kjuulh/dagger-rs/commit/6629d2db4fbc7cdba9b2e4a241e4b0a2592cf384)) +
+ ## v0.2.17 (2023-03-13) + + + + + ### Bug Fixes - make sure tests have a command to execute @@ -30,7 +65,7 @@ and this project adheres to - - 9 commits contributed to the release over the course of 2 calendar days. + - 10 commits contributed to the release over the course of 2 calendar days. - 2 days passed between releases. - 9 commits were understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages @@ -42,6 +77,7 @@ and this project adheres to
view details * **Uncategorized** + - Release dagger-sdk v0.2.17 ([`a8e6dde`](https://github.com/kjuulh/dagger-rs/commit/a8e6dde615029d9a94d159ed84b5373121cd201f)) - make sure tests have a command to execute ([`1bfd084`](https://github.com/kjuulh/dagger-rs/commit/1bfd084cd28e2b984c61de7f3f9a065cc41be007)) - remove unused imports ([`5593fce`](https://github.com/kjuulh/dagger-rs/commit/5593fce2e16e0aa97a2e6843f15d3bb1121048f5)) - remove export and instead use exitcode ([`2cc0231`](https://github.com/kjuulh/dagger-rs/commit/2cc0231c5f29993081f0f7e15e44cac95a7d6086)) diff --git a/crates/dagger-sdk/Cargo.toml b/crates/dagger-sdk/Cargo.toml index 28ef0bf..83199fa 100644 --- a/crates/dagger-sdk/Cargo.toml +++ b/crates/dagger-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-sdk" -version = "0.2.18" +version = "0.2.19" edition = "2021" readme = "README.md" license-file = "LICENSE.MIT"