Skip to content
This repository was archived by the owner on Sep 24, 2025. It is now read-only.

Commit 94815f0

Browse files
release: bump crate versions (#547)
Co-authored-by: Ari Frantz <ari.frantz@stjude.org>
1 parent f02fc5c commit 94815f0

File tree

20 files changed

+69
-45
lines changed

20 files changed

+69
-45
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.15.1", features = ["codespan", "analysis"] }
12+
wdl = { path = "../wdl", version = "0.16.0", features = ["codespan", "analysis"] }
1313

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

wdl-analysis/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.11.0 - 07-30-2025
11+
1012
#### Added
1113

1214
* Added an `ArrayType::unqualified` method to cheaply drop the `+` qualifier ([#529](https://github.com/stjude-rust-labs/wdl/pull/529)).

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.10.0"
3+
version = "0.11.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.14.0" }
15-
wdl-format = { path = "../wdl-format", version = "0.8.0" }
14+
wdl-ast = { path = "../wdl-ast", version = "0.15.0" }
15+
wdl-format = { path = "../wdl-format", version = "0.9.0" }
1616
wdl-grammar = { path = "../wdl-grammar", version = "0.14.0" }
1717

1818
anyhow = { workspace = true }

wdl-ast/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.15.0 - 07-30-2025
11+
12+
#### Dependencies
13+
14+
* Bumps dependencies.
15+
1016
## 0.14.0 - 07-09-2025
1117

1218
#### Changed

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.14.0"
3+
version = "0.15.0"
44
authors.workspace = true
55
rust-version.workspace = true
66
edition.workspace = true

wdl-cli/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.4.0 - 07-30-2025
11+
1012
#### Added
1113

1214
* Inputs on the CL can have the name of the called task or workflow specified and then ommitted from individual input pairs ([#535](https://github.com/stjude-rust-labs/wdl/pull/535)).

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.3.1"
3+
version = "0.4.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.10.0" }
15-
wdl-ast = { path = "../wdl-ast", version = "0.14.0" }
16-
wdl-engine = { path = "../wdl-engine", version = "0.5.0" }
17-
wdl-lint = { path = "../wdl-lint", version = "0.13.0" }
14+
wdl-analysis = { path = "../wdl-analysis", version = "0.11.0" }
15+
wdl-ast = { path = "../wdl-ast", version = "0.15.0" }
16+
wdl-engine = { path = "../wdl-engine", version = "0.6.0" }
17+
wdl-lint = { path = "../wdl-lint", version = "0.14.0" }
1818

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

wdl-doc/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.6.0 - 07-30-2025
11+
12+
#### Dependencies
13+
14+
* Bumps dependencies.
15+
1016
## 0.5.0 - 07-09-2025
1117

1218
#### Added

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.5.0"
3+
version = "0.6.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.10.0" }
14-
wdl-ast = { path = "../wdl-ast", version = "0.14.0" }
13+
wdl-analysis = { path = "../wdl-analysis", version = "0.11.0" }
14+
wdl-ast = { path = "../wdl-ast", version = "0.15.0" }
1515

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

wdl-engine/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.6.0 - 07-30-2025
11+
1012
#### Added
1113

1214
* Added `cpu_limit_behavior` and `memory_limit_behavior` options to task execution configuration ([#543](https://github.com/stjude-rust-labs/wdl/pull/543))

0 commit comments

Comments
 (0)