diff --git a/CHANGELOG.md b/CHANGELOG.md
index b88a0be..0594327 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,32 @@ 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.9 (2023-02-19)
+
+### New Features
+
+ - re-export through lib.rs
+ this means that you can now use dagger_sdk::connect() instead of
+ dagger_sdk::client::connect();
+
+### 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**
+ - re-export through lib.rs ([`19ed6c2`](https://github.com/kjuulh/dagger-rs/commit/19ed6c267f779b72430422c463ceed553f6fc618))
+
+
## v0.2.8 (2023-02-19)
### New Features
diff --git a/Cargo.lock b/Cargo.lock
index 5465888..94f15b4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -114,7 +114,7 @@ version = "0.1.0"
dependencies = [
"clap",
"color-eyre",
- "dagger-sdk 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
+ "dagger-sdk 0.2.2",
"eyre",
]
@@ -245,7 +245,7 @@ dependencies = [
[[package]]
name = "dagger-codegen"
-version = "0.2.2"
+version = "0.2.3"
dependencies = [
"convert_case",
"dagger-core 0.2.2",
@@ -305,7 +305,7 @@ dependencies = [
[[package]]
name = "dagger-rs"
-version = "0.2.8"
+version = "0.2.9"
dependencies = [
"clap",
"color-eyre",
@@ -328,23 +328,6 @@ dependencies = [
"tempfile",
]
-[[package]]
-name = "dagger-sdk"
-version = "0.2.2"
-dependencies = [
- "base64",
- "dagger-core 0.2.2",
- "eyre",
- "futures",
- "genco",
- "gql_client",
- "pretty_assertions",
- "rand",
- "serde",
- "serde_json",
- "tokio",
-]
-
[[package]]
name = "dagger-sdk"
version = "0.2.2"
@@ -363,6 +346,23 @@ dependencies = [
"tokio",
]
+[[package]]
+name = "dagger-sdk"
+version = "0.2.3"
+dependencies = [
+ "base64",
+ "dagger-core 0.2.2",
+ "eyre",
+ "futures",
+ "genco",
+ "gql_client",
+ "pretty_assertions",
+ "rand",
+ "serde",
+ "serde_json",
+ "tokio",
+]
+
[[package]]
name = "diff"
version = "0.1.13"
diff --git a/Cargo.toml b/Cargo.toml
index 9e423c7..1f77454 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dagger-rs"
-version = "0.2.8"
+version = "0.2.9"
edition = "2021"
readme = "README.md"
license-file = "LICENSE.MIT"
@@ -19,7 +19,7 @@ members = [
]
[dependencies]
-dagger-codegen = { path = "crates/dagger-codegen", version = "^0.2.2" }
+dagger-codegen = { path = "crates/dagger-codegen", version = "^0.2.3" }
dagger-core = { path = "crates/dagger-core", version = "^0.2.2" }
clap = "4.1.6"
diff --git a/crates/dagger-codegen/CHANGELOG.md b/crates/dagger-codegen/CHANGELOG.md
index 938397e..fb01169 100644
--- a/crates/dagger-codegen/CHANGELOG.md
+++ b/crates/dagger-codegen/CHANGELOG.md
@@ -5,6 +5,32 @@ 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.3 (2023-02-19)
+
+### New Features
+
+ - with return result instead of unwrap
+ - remove unnecessary option returns
+
+### 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**
+ - with return result instead of unwrap ([`de063ea`](https://github.com/kjuulh/dagger-rs/commit/de063eae858eb3335d2558a57ee6a88689635200))
+ - remove unnecessary option returns ([`5d66736`](https://github.com/kjuulh/dagger-rs/commit/5d667369900a47d3a6015cd3814c240bc5c54436))
+
+
## v0.2.2 (2023-02-19)
### New Features
@@ -15,7 +41,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 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
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-codegen/Cargo.toml b/crates/dagger-codegen/Cargo.toml
index 26f6700..85ae7ef 100644
--- a/crates/dagger-codegen/Cargo.toml
+++ b/crates/dagger-codegen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dagger-codegen"
-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 cbd382a..122509d 100644
--- a/crates/dagger-sdk/CHANGELOG.md
+++ b/crates/dagger-sdk/CHANGELOG.md
@@ -5,6 +5,36 @@ 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.3 (2023-02-19)
+
+### New Features
+
+ - re-export through lib.rs
+ this means that you can now use dagger_sdk::connect() instead of
+ dagger_sdk::client::connect();
+ - with return result instead of unwrap
+ - remove unnecessary option returns
+
+### Commit Statistics
+
+
+
+ - 3 commits contributed to the release.
+ - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - re-export through lib.rs ([`19ed6c2`](https://github.com/kjuulh/dagger-rs/commit/19ed6c267f779b72430422c463ceed553f6fc618))
+ - with return result instead of unwrap ([`de063ea`](https://github.com/kjuulh/dagger-rs/commit/de063eae858eb3335d2558a57ee6a88689635200))
+ - remove unnecessary option returns ([`5d66736`](https://github.com/kjuulh/dagger-rs/commit/5d667369900a47d3a6015cd3814c240bc5c54436))
+
+
## v0.2.2 (2023-02-19)
### New Features
@@ -19,7 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- - 3 commits contributed to the release.
+ - 4 commits contributed to the release.
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
@@ -30,6 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Release dagger-sdk v0.2.2 ([`e921ba1`](https://github.com/kjuulh/dagger-rs/commit/e921ba13638987ccf5beaa48c4be9be5fd879bd0))
- 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))
- fixed fmt errors ([`10bc6f3`](https://github.com/kjuulh/dagger-rs/commit/10bc6f3846b65cc82c2fb343d8cfe921784bef1b))
- update to dagger v0.3.12 ([`6e5f407`](https://github.com/kjuulh/dagger-rs/commit/6e5f4074329ab0462445b31d4153f8497c483438))
diff --git a/crates/dagger-sdk/Cargo.toml b/crates/dagger-sdk/Cargo.toml
index 4ba5bf9..3b7be2a 100644
--- a/crates/dagger-sdk/Cargo.toml
+++ b/crates/dagger-sdk/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dagger-sdk"
-version = "0.2.2"
+version = "0.2.3"
edition = "2021"
readme = "README.md"
license-file = "LICENSE.MIT"