diff --git a/CHANGELOG.md b/CHANGELOG.md index e7e126f..b88a0be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,31 @@ 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-02-19) + +### New Features + + - with sccache + +### Commit Statistics + + + + - 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 + +### Commit Details + + + +
view details + + * **Uncategorized** + - with sccache ([`f42da84`](https://github.com/kjuulh/dagger-rs/commit/f42da8416a5450c7c3c924353c3cc9112afd18f0)) + - test change ([`98781f2`](https://github.com/kjuulh/dagger-rs/commit/98781f2496deaea4bc13c9e90e60543b7daac9d7)) +
+ ## v0.2.7 (2023-02-18) ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 8b041e2..4e84bba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -245,10 +245,10 @@ dependencies = [ [[package]] name = "dagger-codegen" -version = "0.2.1" +version = "0.2.2" dependencies = [ "convert_case", - "dagger-core 0.2.1", + "dagger-core 0.2.2", "eyre", "genco", "itertools", @@ -257,28 +257,6 @@ dependencies = [ "serde_json", ] -[[package]] -name = "dagger-core" -version = "0.2.1" -dependencies = [ - "clap", - "dirs", - "eyre", - "flate2", - "genco", - "graphql-introspection-query", - "graphql_client", - "hex", - "hex-literal", - "platform-info", - "reqwest", - "serde", - "serde_json", - "sha2", - "tar", - "tempfile", -] - [[package]] name = "dagger-core" version = "0.2.1" @@ -303,14 +281,36 @@ dependencies = [ "tempfile", ] +[[package]] +name = "dagger-core" +version = "0.2.2" +dependencies = [ + "clap", + "dirs", + "eyre", + "flate2", + "genco", + "graphql-introspection-query", + "graphql_client", + "hex", + "hex-literal", + "platform-info", + "reqwest", + "serde", + "serde_json", + "sha2", + "tar", + "tempfile", +] + [[package]] name = "dagger-rs" -version = "0.2.7" +version = "0.2.8" dependencies = [ "clap", "color-eyre", "dagger-codegen", - "dagger-core 0.2.1", + "dagger-core 0.2.2", "dirs", "eyre", "flate2", @@ -333,7 +333,7 @@ name = "dagger-sdk" version = "0.2.1" dependencies = [ "base64", - "dagger-core 0.2.1", + "dagger-core 0.2.2", "eyre", "futures", "genco", @@ -352,7 +352,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91342638dfdcd44ca5d3a2cc1b962e3f2c0e461487e90fe62972ef31df74c061" dependencies = [ "base64", - "dagger-core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "dagger-core 0.2.1", "eyre", "futures", "genco", diff --git a/Cargo.toml b/Cargo.toml index 51eb465..9e423c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-rs" -version = "0.2.7" +version = "0.2.8" edition = "2021" readme = "README.md" license-file = "LICENSE.MIT" @@ -19,8 +19,8 @@ members = [ ] [dependencies] -dagger-codegen = { path = "crates/dagger-codegen", version = "^0.2.1" } -dagger-core = { path = "crates/dagger-core", version = "^0.2.1" } +dagger-codegen = { path = "crates/dagger-codegen", version = "^0.2.2" } +dagger-core = { path = "crates/dagger-core", version = "^0.2.2" } clap = "4.1.6" dirs = "4.0.0" diff --git a/crates/dagger-codegen/CHANGELOG.md b/crates/dagger-codegen/CHANGELOG.md index 520e524..938397e 100644 --- a/crates/dagger-codegen/CHANGELOG.md +++ b/crates/dagger-codegen/CHANGELOG.md @@ -5,6 +5,30 @@ 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.2 (2023-02-19) + +### New Features + + - update to dagger v0.3.12 + +### Commit Statistics + + + + - 1 commit contributed to the release. + - 1 commit was understood as [conventional](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - update to dagger v0.3.12 ([`6e5f407`](https://github.com/kjuulh/dagger-rs/commit/6e5f4074329ab0462445b31d4153f8497c483438)) +
+ ## v0.2.1 (2023-02-18) @@ -21,7 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - 34 commits contributed to the release over the course of 20 calendar days. + - 35 commits contributed to the release over the course of 20 calendar days. - 2 commits were understood as [conventional](https://www.conventionalcommits.org). - 2 unique issues were worked on: [#5](https://github.com/kjuulh/dagger-rs/issues/5), [#6](https://github.com/kjuulh/dagger-rs/issues/6) @@ -36,6 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * **[#6](https://github.com/kjuulh/dagger-rs/issues/6)** - feature/add impl ([`4a4c03f`](https://github.com/kjuulh/dagger-rs/commit/4a4c03f3c2ee7f6268c65976715e70767b4ea78d)) * **Uncategorized** + - Release dagger-core v0.2.1, dagger-codegen v0.2.1, dagger-rs v0.2.1 ([`1332bc8`](https://github.com/kjuulh/dagger-rs/commit/1332bc842ce2ea0254c651419813b63b36ca590c)) - add changelogs ([`a064684`](https://github.com/kjuulh/dagger-rs/commit/a064684fcf80196188a57d9ff9067c0b5769fb09)) - Adjusting changelogs prior to release of dagger-core v0.2.1, dagger-codegen v0.2.1, dagger-rs v0.2.1 ([`f4a20fd`](https://github.com/kjuulh/dagger-rs/commit/f4a20fda79063b29829cc899793775ba8cb17214)) - remove toolchain ([`f034528`](https://github.com/kjuulh/dagger-rs/commit/f03452840cf9260cd1d5e5aa8d7ee2897384c745)) diff --git a/crates/dagger-codegen/Cargo.toml b/crates/dagger-codegen/Cargo.toml index 8efef6a..26f6700 100644 --- a/crates/dagger-codegen/Cargo.toml +++ b/crates/dagger-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-codegen" -version = "0.2.1" +version = "0.2.2" edition = "2021" readme = "README.md" license-file = "LICENSE.MIT" @@ -11,7 +11,7 @@ publish = true [dependencies] convert_case = "0.6.0" -dagger-core = { path = "../dagger-core", version = "^0.2.1" } +dagger-core = { path = "../dagger-core", version = "^0.2.2" } eyre = "0.6.8" genco = "0.17.3" diff --git a/crates/dagger-core/CHANGELOG.md b/crates/dagger-core/CHANGELOG.md index 5abecd3..b3ce9f5 100644 --- a/crates/dagger-core/CHANGELOG.md +++ b/crates/dagger-core/CHANGELOG.md @@ -5,6 +5,30 @@ 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.2 (2023-02-19) + +### New Features + + - update to dagger v0.3.12 + +### Commit Statistics + + + + - 1 commit contributed to the release. + - 1 commit was understood as [conventional](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - update to dagger v0.3.12 ([`6e5f407`](https://github.com/kjuulh/dagger-rs/commit/6e5f4074329ab0462445b31d4153f8497c483438)) +
+ ## v0.2.1 (2023-02-18) ### Bug Fixes @@ -15,7 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - 15 commits contributed to the release over the course of 19 calendar days. + - 16 commits contributed to the release over the course of 19 calendar days. - 1 commit was understood as [conventional](https://www.conventionalcommits.org). - 2 unique issues were worked on: [#5](https://github.com/kjuulh/dagger-rs/issues/5), [#6](https://github.com/kjuulh/dagger-rs/issues/6) @@ -30,6 +54,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * **[#6](https://github.com/kjuulh/dagger-rs/issues/6)** - feature/add impl ([`4a4c03f`](https://github.com/kjuulh/dagger-rs/commit/4a4c03f3c2ee7f6268c65976715e70767b4ea78d)) * **Uncategorized** + - Release dagger-core v0.2.1, dagger-codegen v0.2.1, dagger-rs v0.2.1 ([`1332bc8`](https://github.com/kjuulh/dagger-rs/commit/1332bc842ce2ea0254c651419813b63b36ca590c)) - add changelogs ([`a064684`](https://github.com/kjuulh/dagger-rs/commit/a064684fcf80196188a57d9ff9067c0b5769fb09)) - Adjusting changelogs prior to release of dagger-core v0.2.1, dagger-codegen v0.2.1, dagger-rs v0.2.1 ([`f4a20fd`](https://github.com/kjuulh/dagger-rs/commit/f4a20fda79063b29829cc899793775ba8cb17214)) - with publish ([`989d5bc`](https://github.com/kjuulh/dagger-rs/commit/989d5bc26036d46a199d939b5cbbe72aff2f8fb1)) diff --git a/crates/dagger-core/Cargo.toml b/crates/dagger-core/Cargo.toml index 62c4b93..9a31351 100644 --- a/crates/dagger-core/Cargo.toml +++ b/crates/dagger-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-core" -version = "0.2.1" +version = "0.2.2" edition = "2021" readme = "README.md" license-file = "LICENSE.MIT" diff --git a/crates/dagger-sdk/Cargo.toml b/crates/dagger-sdk/Cargo.toml index 40ec3ce..977ccc5 100644 --- a/crates/dagger-sdk/Cargo.toml +++ b/crates/dagger-sdk/Cargo.toml @@ -12,7 +12,7 @@ publish = true [dependencies] base64 = "0.21.0" -dagger-core = { path = "../dagger-core", version = "^0.2.1" } +dagger-core = { path = "../dagger-core", version = "^0.2.2" } eyre = "0.6.8" futures = "0.3.26"