Skip to content
This repository was archived by the owner on Jun 29, 2023. It is now read-only.

Commit f390eac

Browse files
committed
Release dagger-core v0.2.8, dagger-sdk v0.2.16
1 parent e642778 commit f390eac

File tree

8 files changed

+94
-10
lines changed

8 files changed

+94
-10
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ members = [
2020

2121
[dependencies]
2222
dagger-codegen = { path = "crates/dagger-codegen", version = "^0.2.5" }
23-
dagger-core = { path = "crates/dagger-core", version = "^0.2.7" }
23+
dagger-core = { path = "crates/dagger-core", version = "^0.2.8" }
2424

2525
clap = "4.1.6"
2626
dirs = "4.0.0"

ci/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ edition = "2021"
88
[dependencies]
99
clap = "4.1.6"
1010
color-eyre = "0.6.2"
11-
dagger-sdk = { path = "../crates/dagger-sdk/", version = "^0.2.15" }
11+
dagger-sdk = { path = "../crates/dagger-sdk/", version = "^0.2.16" }
1212
eyre = "0.6.8"
1313
tokio = { version = "1.25.0", features = ["full"] }

crates/dagger-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ publish = true
1111

1212
[dependencies]
1313
convert_case = "0.6.0"
14-
dagger-core = { path = "../dagger-core", version = "^0.2.7" }
14+
dagger-core = { path = "../dagger-core", version = "^0.2.8" }
1515

1616
eyre = "0.6.8"
1717
genco = "0.17.3"

crates/dagger-core/CHANGELOG.md

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,42 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v0.2.8 (2023-03-10)
9+
10+
### New Features
11+
12+
- <csr-id-41b20b6268db9d8defe333694e4d3ec019d7c923/> bump version
13+
- <csr-id-5f9b3a19c0ab6988bc335b020052074f3f101305/> set internal warnings as errors
14+
- <csr-id-f9e7af931d94fbedacf74f5da9a2f71b1992324b/> introduce tests again
15+
16+
### Bug Fixes
17+
18+
- <csr-id-ecca036bc644fee93fbcb69bf6da9f29169e473e/> fix builder pattern to actually work with default values
19+
In previous versions the builder pattern required all values to be set.
20+
This has not been fixed, so that default values are allowed.
21+
22+
### Commit Statistics
23+
24+
<csr-read-only-do-not-edit/>
25+
26+
- 4 commits contributed to the release over the course of 13 calendar days.
27+
- 13 days passed between releases.
28+
- 4 commits were understood as [conventional](https://www.conventionalcommits.org).
29+
- 0 issues like '(#ID)' were seen in commit messages
30+
31+
### Commit Details
32+
33+
<csr-read-only-do-not-edit/>
34+
35+
<details><summary>view details</summary>
36+
37+
* **Uncategorized**
38+
- bump version ([`41b20b6`](https://github.com/kjuulh/dagger-rs/commit/41b20b6268db9d8defe333694e4d3ec019d7c923))
39+
- set internal warnings as errors ([`5f9b3a1`](https://github.com/kjuulh/dagger-rs/commit/5f9b3a19c0ab6988bc335b020052074f3f101305))
40+
- introduce tests again ([`f9e7af9`](https://github.com/kjuulh/dagger-rs/commit/f9e7af931d94fbedacf74f5da9a2f71b1992324b))
41+
- fix builder pattern to actually work with default values ([`ecca036`](https://github.com/kjuulh/dagger-rs/commit/ecca036bc644fee93fbcb69bf6da9f29169e473e))
42+
</details>
43+
844
## v0.2.7 (2023-02-24)
945

1046
### New Features
@@ -15,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1551

1652
<csr-read-only-do-not-edit/>
1753

18-
- 1 commit contributed to the release.
54+
- 2 commits contributed to the release.
1955
- 4 days passed between releases.
2056
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2157
- 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
2763
<details><summary>view details</summary>
2864

2965
* **Uncategorized**
66+
- Release dagger-core v0.2.7, dagger-sdk v0.2.15 ([`6a9a560`](https://github.com/kjuulh/dagger-rs/commit/6a9a560cdca097abf23371d44599a2f1b726ae7f))
3067
- update to dagger-v0.3.13 ([`3e8ca8d`](https://github.com/kjuulh/dagger-rs/commit/3e8ca8d86eafdc1f9d5e8b69f14fb60509549e0f))
3168
</details>
3269

crates/dagger-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dagger-core"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
edition = "2021"
55
readme = "README.md"
66
license-file = "LICENSE.MIT"

crates/dagger-sdk/CHANGELOG.md

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,52 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## v0.2.16 (2023-03-10)
10+
11+
### Chore
12+
13+
- <csr-id-e642778d9028726dfb07217814e15ad1dd3b83f2/> fix tasks
14+
15+
### Documentation
16+
17+
- <csr-id-13b7805e7e6fcf47e0a1318adcc25b4ab773a3c9/> fix missing await in connect
18+
19+
### New Features
20+
21+
- <csr-id-7133bfae9508bc5977548e373c49342a1248d6e4/> with dagger-engine v.0.4.0
22+
- <csr-id-4381af029521c2cbac9325278d261db79a994657/> add tests to sdk
23+
- <csr-id-5f9b3a19c0ab6988bc335b020052074f3f101305/> set internal warnings as errors
24+
25+
### Bug Fixes
26+
27+
- <csr-id-ecca036bc644fee93fbcb69bf6da9f29169e473e/> fix builder pattern to actually work with default values
28+
In previous versions the builder pattern required all values to be set.
29+
This has not been fixed, so that default values are allowed.
30+
31+
### Commit Statistics
32+
33+
<csr-read-only-do-not-edit/>
34+
35+
- 6 commits contributed to the release over the course of 13 calendar days.
36+
- 13 days passed between releases.
37+
- 6 commits were understood as [conventional](https://www.conventionalcommits.org).
38+
- 0 issues like '(#ID)' were seen in commit messages
39+
40+
### Commit Details
41+
42+
<csr-read-only-do-not-edit/>
43+
44+
<details><summary>view details</summary>
45+
46+
* **Uncategorized**
47+
- fix tasks ([`e642778`](https://github.com/kjuulh/dagger-rs/commit/e642778d9028726dfb07217814e15ad1dd3b83f2))
48+
- with dagger-engine v.0.4.0 ([`7133bfa`](https://github.com/kjuulh/dagger-rs/commit/7133bfae9508bc5977548e373c49342a1248d6e4))
49+
- fix missing await in connect ([`13b7805`](https://github.com/kjuulh/dagger-rs/commit/13b7805e7e6fcf47e0a1318adcc25b4ab773a3c9))
50+
- add tests to sdk ([`4381af0`](https://github.com/kjuulh/dagger-rs/commit/4381af029521c2cbac9325278d261db79a994657))
51+
- set internal warnings as errors ([`5f9b3a1`](https://github.com/kjuulh/dagger-rs/commit/5f9b3a19c0ab6988bc335b020052074f3f101305))
52+
- fix builder pattern to actually work with default values ([`ecca036`](https://github.com/kjuulh/dagger-rs/commit/ecca036bc644fee93fbcb69bf6da9f29169e473e))
53+
</details>
54+
955
## v0.2.15 (2023-02-24)
1056

1157
### New Features
@@ -20,7 +66,7 @@ and this project adheres to
2066

2167
<csr-read-only-do-not-edit/>
2268

23-
- 2 commits contributed to the release.
69+
- 3 commits contributed to the release.
2470
- 2 days passed between releases.
2571
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
2672
- 0 issues like '(#ID)' were seen in commit messages
@@ -32,6 +78,7 @@ and this project adheres to
3278
<details><summary>view details</summary>
3379

3480
* **Uncategorized**
81+
- Release dagger-core v0.2.7, dagger-sdk v0.2.15 ([`6a9a560`](https://github.com/kjuulh/dagger-rs/commit/6a9a560cdca097abf23371d44599a2f1b726ae7f))
3582
- set deserialize on enums as well ([`e578b0e`](https://github.com/kjuulh/dagger-rs/commit/e578b0e371e13bc30ada793b7cd6ebe75ba83a07))
3683
- update to dagger-v0.3.13 ([`3e8ca8d`](https://github.com/kjuulh/dagger-rs/commit/3e8ca8d86eafdc1f9d5e8b69f14fb60509549e0f))
3784
</details>

crates/dagger-sdk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dagger-sdk"
3-
version = "0.2.15"
3+
version = "0.2.16"
44
edition = "2021"
55
readme = "README.md"
66
license-file = "LICENSE.MIT"
@@ -11,7 +11,7 @@ publish = true
1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
14-
dagger-core = { path = "../dagger-core", version = "^0.2.7" }
14+
dagger-core = { path = "../dagger-core", version = "^0.2.8" }
1515

1616
base64 = "0.21.0"
1717
eyre = "0.6.8"

0 commit comments

Comments
 (0)