diff --git a/CHANGELOG.md b/CHANGELOG.md index 0594327..d47cfe4 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.10 (2023-02-20) + +### 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](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - Fix async panic on blocking #19 ([`75bc17e`](https://github.com/kjuulh/dagger-rs/commit/75bc17e57db222492c6ffd2dfe80208d2bda75c9)) +
+ ## v0.2.9 (2023-02-19) ### New Features diff --git a/Cargo.lock b/Cargo.lock index 2952338..5c12200 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,7 +114,7 @@ version = "0.1.0" dependencies = [ "clap", "color-eyre", - "dagger-sdk 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "dagger-sdk 0.2.8", "eyre", "tokio", ] @@ -249,7 +249,7 @@ name = "dagger-codegen" version = "0.2.5" dependencies = [ "convert_case", - "dagger-core 0.2.2", + "dagger-core 0.2.3", "eyre", "genco", "itertools", @@ -258,29 +258,6 @@ dependencies = [ "serde_json", ] -[[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", - "tokio", -] - [[package]] name = "dagger-core" version = "0.2.2" @@ -305,14 +282,37 @@ dependencies = [ "tempfile", ] +[[package]] +name = "dagger-core" +version = "0.2.3" +dependencies = [ + "clap", + "dirs", + "eyre", + "flate2", + "genco", + "graphql-introspection-query", + "graphql_client", + "hex", + "hex-literal", + "platform-info", + "reqwest", + "serde", + "serde_json", + "sha2", + "tar", + "tempfile", + "tokio", +] + [[package]] name = "dagger-rs" -version = "0.2.9" +version = "0.2.10" dependencies = [ "clap", "color-eyre", "dagger-codegen", - "dagger-core 0.2.2", + "dagger-core 0.2.3", "dirs", "eyre", "flate2", @@ -334,16 +334,15 @@ dependencies = [ [[package]] name = "dagger-sdk" version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e90636d5b74ce8a62e8507a8d075c4d997c3123a1709596d0f97c3070f993b2d" dependencies = [ "base64", "dagger-core 0.2.2", "derive_builder", "eyre", "futures", - "genco", "gql_client", - "pretty_assertions", - "rand", "serde", "serde_json", "tokio", @@ -351,16 +350,17 @@ dependencies = [ [[package]] name = "dagger-sdk" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e90636d5b74ce8a62e8507a8d075c4d997c3123a1709596d0f97c3070f993b2d" +version = "0.2.9" dependencies = [ "base64", - "dagger-core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "dagger-core 0.2.3", "derive_builder", "eyre", "futures", + "genco", "gql_client", + "pretty_assertions", + "rand", "serde", "serde_json", "tokio", diff --git a/Cargo.toml b/Cargo.toml index 8ea43b4..eda9802 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-rs" -version = "0.2.9" +version = "0.2.10" edition = "2021" readme = "README.md" license-file = "LICENSE.MIT" @@ -20,7 +20,7 @@ members = [ [dependencies] dagger-codegen = { path = "crates/dagger-codegen", version = "^0.2.3" } -dagger-core = { path = "crates/dagger-core", version = "^0.2.2" } +dagger-core = { path = "crates/dagger-core", version = "^0.2.3" } clap = "4.1.6" dirs = "4.0.0" diff --git a/crates/dagger-core/CHANGELOG.md b/crates/dagger-core/CHANGELOG.md index b3ce9f5..02cfc8c 100644 --- a/crates/dagger-core/CHANGELOG.md +++ b/crates/dagger-core/CHANGELOG.md @@ -5,11 +5,12 @@ 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) +## v0.2.3 (2023-02-20) -### New Features +### Bug Fixes - - update to dagger v0.3.12 + - Fix async panic on blocking #19 + Replaced internal threads with tokio spawn functions ### Commit Statistics @@ -26,6 +27,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** + - Fix async panic on blocking #19 ([`75bc17e`](https://github.com/kjuulh/dagger-rs/commit/75bc17e57db222492c6ffd2dfe80208d2bda75c9)) +
+ +## v0.2.2 (2023-02-19) + +### New Features + + - update to dagger v0.3.12 + +### 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** + - Release dagger-core v0.2.2, dagger-codegen v0.2.2, dagger-rs v0.2.8 ([`1638f15`](https://github.com/kjuulh/dagger-rs/commit/1638f15fba9d16512e8452f87b908d6dce417cd9)) - update to dagger v0.3.12 ([`6e5f407`](https://github.com/kjuulh/dagger-rs/commit/6e5f4074329ab0462445b31d4153f8497c483438))
diff --git a/crates/dagger-core/Cargo.toml b/crates/dagger-core/Cargo.toml index 53c2051..6916752 100644 --- a/crates/dagger-core/Cargo.toml +++ b/crates/dagger-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-core" -version = "0.2.2" +version = "0.2.3" edition = "2021" readme = "README.md" license-file = "LICENSE.MIT" diff --git a/crates/dagger-sdk/CHANGELOG.md b/crates/dagger-sdk/CHANGELOG.md index 545d422..86aeaee 100644 --- a/crates/dagger-sdk/CHANGELOG.md +++ b/crates/dagger-sdk/CHANGELOG.md @@ -5,11 +5,12 @@ 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) +## v0.2.9 (2023-02-20) -### New Features +### Bug Fixes - - add documentation strings + - Fix async panic on blocking #19 + Replaced internal threads with tokio spawn functions ### Commit Statistics @@ -26,6 +27,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** + - Fix async panic on blocking #19 ([`75bc17e`](https://github.com/kjuulh/dagger-rs/commit/75bc17e57db222492c6ffd2dfe80208d2bda75c9)) +
+ +## v0.2.8 (2023-02-19) + +### New Features + + - add documentation strings + +### 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** + - Release dagger-sdk v0.2.8, dagger-codegen v0.2.5 ([`0499024`](https://github.com/kjuulh/dagger-rs/commit/04990247ba8e9d0555847f582fef14849dbedebf)) - add documentation strings ([`978ede6`](https://github.com/kjuulh/dagger-rs/commit/978ede68ae52f5b5150a2aa45b8d6e1fbbbee2f4))
diff --git a/crates/dagger-sdk/Cargo.toml b/crates/dagger-sdk/Cargo.toml index 74dd83d..bf6bced 100644 --- a/crates/dagger-sdk/Cargo.toml +++ b/crates/dagger-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dagger-sdk" -version = "0.2.8" +version = "0.2.9" 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.2" } +dagger-core = { path = "../dagger-core", version = "^0.2.3" } base64 = "0.21.0" eyre = "0.6.8"