From f390eac29f1d041d18d2207a5aa0a8d993aab68c Mon Sep 17 00:00:00 2001 From: kjuulh Date: Fri, 10 Mar 2023 23:40:02 +0100 Subject: [PATCH] Release dagger-core v0.2.8, dagger-sdk v0.2.16 --- Cargo.lock | 4 +-- Cargo.toml | 2 +- ci/Cargo.toml | 2 +- crates/dagger-codegen/Cargo.toml | 2 +- crates/dagger-core/CHANGELOG.md | 39 ++++++++++++++++++++++++- crates/dagger-core/Cargo.toml | 2 +- crates/dagger-sdk/CHANGELOG.md | 49 +++++++++++++++++++++++++++++++- crates/dagger-sdk/Cargo.toml | 4 +-- 8 files changed, 94 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d840151..ef4eaf2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -260,7 +260,7 @@ dependencies = [ [[package]] name = "dagger-core" -version = "0.2.7" +version = "0.2.8" dependencies = [ "clap", "dirs", @@ -309,7 +309,7 @@ dependencies = [ [[package]] name = "dagger-sdk" -version = "0.2.15" +version = "0.2.16" dependencies = [ "base64", "dagger-core", diff --git a/Cargo.toml b/Cargo.toml index caf4b4d..bda4a53 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ members = [ [dependencies] dagger-codegen = { path = "crates/dagger-codegen", version = "^0.2.5" } -dagger-core = { path = "crates/dagger-core", version = "^0.2.7" } +dagger-core = { path = "crates/dagger-core", version = "^0.2.8" } clap = "4.1.6" dirs = "4.0.0" diff --git a/ci/Cargo.toml b/ci/Cargo.toml index 3d8917f..ed913de 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.15" } +dagger-sdk = { path = "../crates/dagger-sdk/", version = "^0.2.16" } eyre = "0.6.8" tokio = { version = "1.25.0", features = ["full"] } diff --git a/crates/dagger-codegen/Cargo.toml b/crates/dagger-codegen/Cargo.toml index 32ce3f7..0d64a6a 100644 --- a/crates/dagger-codegen/Cargo.toml +++ b/crates/dagger-codegen/Cargo.toml @@ -11,7 +11,7 @@ publish = true [dependencies] convert_case = "0.6.0" -dagger-core = { path = "../dagger-core", version = "^0.2.7" } +dagger-core = { path = "../dagger-core", version = "^0.2.8" } eyre = "0.6.8" genco = "0.17.3" diff --git a/crates/dagger-core/CHANGELOG.md b/crates/dagger-core/CHANGELOG.md index 9cb7f86..2957f44 100644 --- a/crates/dagger-core/CHANGELOG.md +++ b/crates/dagger-core/CHANGELOG.md @@ -5,6 +5,42 @@ 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.8 (2023-03-10) + +### New Features + + - bump version + - set internal warnings as errors + - introduce tests again + +### Bug Fixes + + - fix builder pattern to actually work with default values + In previous versions the builder pattern required all values to be set. + This has not been fixed, so that default values are allowed. + +### Commit Statistics + + + + - 4 commits contributed to the release over the course of 13 calendar days. + - 13 days passed between releases. + - 4 commits were understood as [conventional](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - bump version ([`41b20b6`](https://github.com/kjuulh/dagger-rs/commit/41b20b6268db9d8defe333694e4d3ec019d7c923)) + - set internal warnings as errors ([`5f9b3a1`](https://github.com/kjuulh/dagger-rs/commit/5f9b3a19c0ab6988bc335b020052074f3f101305)) + - introduce tests again ([`f9e7af9`](https://github.com/kjuulh/dagger-rs/commit/f9e7af931d94fbedacf74f5da9a2f71b1992324b)) + - fix builder pattern to actually work with default values ([`ecca036`](https://github.com/kjuulh/dagger-rs/commit/ecca036bc644fee93fbcb69bf6da9f29169e473e)) +
+ ## v0.2.7 (2023-02-24) ### New Features @@ -15,7 +51,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. - 4 days passed between releases. - 1 commit was understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages @@ -27,6 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** + - Release dagger-core v0.2.7, dagger-sdk v0.2.15 ([`6a9a560`](https://github.com/kjuulh/dagger-rs/commit/6a9a560cdca097abf23371d44599a2f1b726ae7f)) - update to dagger-v0.3.13 ([`3e8ca8d`](https://github.com/kjuulh/dagger-rs/commit/3e8ca8d86eafdc1f9d5e8b69f14fb60509549e0f))
diff --git a/crates/dagger-core/Cargo.toml b/crates/dagger-core/Cargo.toml index e04c3aa..930e025 100644 --- a/crates/dagger-core/Cargo.toml +++ b/crates/dagger-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-core" -version = "0.2.7" +version = "0.2.8" edition = "2021" readme = "README.md" license-file = "LICENSE.MIT" diff --git a/crates/dagger-sdk/CHANGELOG.md b/crates/dagger-sdk/CHANGELOG.md index fce897d..eb924d5 100644 --- a/crates/dagger-sdk/CHANGELOG.md +++ b/crates/dagger-sdk/CHANGELOG.md @@ -6,6 +6,52 @@ 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.16 (2023-03-10) + +### Chore + + - fix tasks + +### Documentation + + - fix missing await in connect + +### New Features + + - with dagger-engine v.0.4.0 + - add tests to sdk + - set internal warnings as errors + +### Bug Fixes + + - fix builder pattern to actually work with default values + In previous versions the builder pattern required all values to be set. + This has not been fixed, so that default values are allowed. + +### Commit Statistics + + + + - 6 commits contributed to the release over the course of 13 calendar days. + - 13 days passed between releases. + - 6 commits were understood as [conventional](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - fix tasks ([`e642778`](https://github.com/kjuulh/dagger-rs/commit/e642778d9028726dfb07217814e15ad1dd3b83f2)) + - with dagger-engine v.0.4.0 ([`7133bfa`](https://github.com/kjuulh/dagger-rs/commit/7133bfae9508bc5977548e373c49342a1248d6e4)) + - fix missing await in connect ([`13b7805`](https://github.com/kjuulh/dagger-rs/commit/13b7805e7e6fcf47e0a1318adcc25b4ab773a3c9)) + - add tests to sdk ([`4381af0`](https://github.com/kjuulh/dagger-rs/commit/4381af029521c2cbac9325278d261db79a994657)) + - set internal warnings as errors ([`5f9b3a1`](https://github.com/kjuulh/dagger-rs/commit/5f9b3a19c0ab6988bc335b020052074f3f101305)) + - fix builder pattern to actually work with default values ([`ecca036`](https://github.com/kjuulh/dagger-rs/commit/ecca036bc644fee93fbcb69bf6da9f29169e473e)) +
+ ## v0.2.15 (2023-02-24) ### New Features @@ -20,7 +66,7 @@ and this project adheres to - - 2 commits contributed to the release. + - 3 commits contributed to the release. - 2 days passed between releases. - 2 commits were understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages @@ -32,6 +78,7 @@ and this project adheres to
view details * **Uncategorized** + - Release dagger-core v0.2.7, dagger-sdk v0.2.15 ([`6a9a560`](https://github.com/kjuulh/dagger-rs/commit/6a9a560cdca097abf23371d44599a2f1b726ae7f)) - set deserialize on enums as well ([`e578b0e`](https://github.com/kjuulh/dagger-rs/commit/e578b0e371e13bc30ada793b7cd6ebe75ba83a07)) - update to dagger-v0.3.13 ([`3e8ca8d`](https://github.com/kjuulh/dagger-rs/commit/3e8ca8d86eafdc1f9d5e8b69f14fb60509549e0f))
diff --git a/crates/dagger-sdk/Cargo.toml b/crates/dagger-sdk/Cargo.toml index 3b8f18f..d630b64 100644 --- a/crates/dagger-sdk/Cargo.toml +++ b/crates/dagger-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-sdk" -version = "0.2.15" +version = "0.2.16" edition = "2021" readme = "README.md" license-file = "LICENSE.MIT" @@ -11,7 +11,7 @@ publish = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -dagger-core = { path = "../dagger-core", version = "^0.2.7" } +dagger-core = { path = "../dagger-core", version = "^0.2.8" } base64 = "0.21.0" eyre = "0.6.8"