Skip to content

Commit 4ed0ed7

Browse files
committed
release: bump crate versions
1 parent 0730837 commit 4ed0ed7

File tree

20 files changed

+120
-47
lines changed

20 files changed

+120
-47
lines changed

gauntlet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license.workspace = true
99
edition.workspace = true
1010

1111
[dependencies]
12-
wdl = { path = "../wdl", version = "0.13.2", features = ["codespan", "analysis"] }
12+
wdl = { path = "../wdl", version = "0.14.0", features = ["codespan", "analysis"] }
1313

1414
anyhow.workspace = true
1515
clap.workspace = true

wdl-analysis/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.9.0 - 05-27-2025
11+
12+
#### Dependencies
13+
14+
* Bumps dependencies.
15+
1016
## 0.8.2 - 05-05-2025
1117

1218
#### Changed

wdl-analysis/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wdl-analysis"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
rust-version.workspace = true
55
license.workspace = true
66
edition.workspace = true
@@ -11,8 +11,8 @@ description = "Analysis of Workflow Description Language (WDL) documents."
1111
documentation = "https://docs.rs/wdl-analysis"
1212

1313
[dependencies]
14-
wdl-ast = { path = "../wdl-ast", version = "0.12.1" }
15-
wdl-format = { path = "../wdl-format", version = "0.6.1" }
14+
wdl-ast = { path = "../wdl-ast", version = "0.13.0" }
15+
wdl-format = { path = "../wdl-format", version = "0.7.0" }
1616

1717
anyhow = { workspace = true }
1818
convert_case = { workspace = true }

wdl-ast/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.13.0 - 05-27-2025
11+
1012
#### Fixed
1113

1214
* If a WDL >=v1.2 workflow has a non-boolean value for the "allow nested inputs" hint, the metadata will also be
1315
searched for `allowNestedInputs: <bool>` instead of prematurely dis-allowing nested inputs
1416
([#445](https://github.com/stjude-rust-labs/wdl/pull/445)).
1517

18+
#### Dependencies
19+
20+
* Bumps dependencies.
21+
1622
## 0.12.1 - 05-02-2025
1723

1824
_A patch bump was required because an error was made during the release of `wdl` v0.13.0 regarding dependencies._

wdl-ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wdl-ast"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors.workspace = true
55
rust-version.workspace = true
66
edition.workspace = true

wdl-cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.2.0 - 05-27-2025
11+
12+
#### Dependencies
13+
14+
* Bumps dependencies.
15+
1016
## 0.1.2 - 05-05-2025
1117

1218
#### Fixed

wdl-cli/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wdl-cli"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
rust-version.workspace = true
55
license.workspace = true
66
edition.workspace = true
@@ -11,10 +11,10 @@ description = "Facilities for building command-line tools using the `wdl` crates
1111
documentation = "https://docs.rs/wdl-cli"
1212

1313
[dependencies]
14-
wdl-analysis = { path = "../wdl-analysis", version = "0.8.2" }
15-
wdl-ast = { path = "../wdl-ast", version = "0.12.1" }
16-
wdl-engine = { path = "../wdl-engine", version = "0.3.2" }
17-
wdl-lint = { path = "../wdl-lint", version = "0.11.1" }
14+
wdl-analysis = { path = "../wdl-analysis", version = "0.9.0" }
15+
wdl-ast = { path = "../wdl-ast", version = "0.13.0" }
16+
wdl-engine = { path = "../wdl-engine", version = "0.4.0" }
17+
wdl-lint = { path = "../wdl-lint", version = "0.12.0" }
1818

1919
anyhow.workspace = true
2020
codespan-reporting.workspace = true

wdl-doc/CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.4.0 - 05-27-2025
11+
12+
#### Dependencies
13+
14+
* Bumps dependencies.
15+
1016
## 0.3.2 - 05-05-2025
1117

12-
* Dependencies were updated.
18+
#### Dependencies
19+
20+
* Bumps dependencies.
1321

1422
## 0.3.1 - 05-02-2025
1523

1624
_A patch bump was required because an error was made during the release of `wdl` v0.13.0 regarding dependencies._
1725

1826
## 0.3.0 - 05-01-2025
1927

20-
* Dependencies were updated.
28+
#### Dependencies
29+
30+
* Bumps dependencies.
2131

2232
## 0.2.0 - 04-01-2025
2333

wdl-doc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wdl-doc"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
description = "Documentation generator for Workflow Description Language (WDL) documents."
55
license.workspace = true
66
edition.workspace = true
@@ -10,8 +10,8 @@ repository.workspace = true
1010
rust-version.workspace = true
1111

1212
[dependencies]
13-
wdl-analysis = { path = "../wdl-analysis", version = "0.8.2" }
14-
wdl-ast = { path = "../wdl-ast", version = "0.12.1" }
13+
wdl-analysis = { path = "../wdl-analysis", version = "0.9.0" }
14+
wdl-ast = { path = "../wdl-ast", version = "0.13.0" }
1515

1616
ammonia.workspace = true
1717
anyhow.workspace = true

wdl-engine/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.4.0 - 05-27-2025
11+
1012
#### Added
1113

1214
* Implemented a TES task execution backend ([#454](https://github.com/stjude-rust-labs/wdl/pull/454)).
1315
* Adds the `insecure` option to the TES backend configuration ([#459](https://github.com/stjude-rust-labs/wdl/pull/459)).
1416

17+
#### Dependencies
18+
19+
* Bumps dependencies.
20+
1521
## 0.3.2 - 05-05-2025
1622

1723
#### Fixed
1824

1925
* JSON and YAML files are now correctly parsed ([#440](https://github.com/stjude-rust-labs/wdl/pull/440)).
2026
* The `From<IndexMap<String, Value>>` method was moved to the private constructor `wdl_engine::Object::new()`, as there are some guarantees the caller has to uphold that weren't obvious in the `From` implementation ([#440](https://github.com/stjude-rust-labs/wdl/pull/440)).
21-
* Dependencies were updated.
27+
28+
#### Dependencies
29+
30+
* Bumps dependencies.
2231

2332
## 0.3.1 - 05-02-2025
2433

0 commit comments

Comments
 (0)