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

Commit 3a7b61b

Browse files
committed
release: bumps wdl to v0.13.1
1 parent 00182e0 commit 3a7b61b

File tree

21 files changed

+85
-39
lines changed

21 files changed

+85
-39
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.0", features = ["codespan", "analysis"] }
12+
wdl = { path = "../wdl", version = "0.13.1", features = ["codespan", "analysis"] }
1313

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

wdl-analysis/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.8.1 - 05-02-2025
11+
12+
_A patch bump was required because an error was made during the release of `wdl` v0.13.0 regarding dependencies._
13+
1014
## 0.8.0 - 05-01-2025
1115

1216
#### 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.0"
3+
version = "0.8.1"
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.0" }
15-
wdl-format = { path = "../wdl-format", version = "0.6.0" }
14+
wdl-ast = { path = "../wdl-ast", version = "0.12.1" }
15+
wdl-format = { path = "../wdl-format", version = "0.6.1" }
1616

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

wdl-ast/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.12.1 - 05-02-2025
11+
12+
_A patch bump was required because an error was made during the release of `wdl` v0.13.0 regarding dependencies._
13+
1014
## 0.12.0 - 05-01-2025
1115

1216
#### Changed

wdl-ast/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wdl-ast"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors.workspace = true
55
rust-version.workspace = true
66
edition.workspace = true
@@ -11,7 +11,7 @@ repository = "https://github.com/stjude-rust-labs/wdl"
1111
documentation = "https://docs.rs/wdl-ast"
1212

1313
[dependencies]
14-
wdl-grammar = { path = "../wdl-grammar", version = "0.12.0" }
14+
wdl-grammar = { path = "../wdl-grammar", version = "0.13.0" }
1515

1616
macropol = "0.1.3"
1717
paste = "1.0.15"

wdl-cli/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.1.1 - 05-02-2025
11+
12+
_A patch bump was required because an error was made during the release of `wdl` v0.13.0 regarding dependencies._
13+
1014
## 0.1.0 - 05-01-2025
1115

1216
#### Added

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.0"
3+
version = "0.1.1"
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.0" }
15-
wdl-ast = { path = "../wdl-ast", version = "0.12.0" }
16-
wdl-engine = { path = "../wdl-engine", version = "0.3.0" }
17-
wdl-lint = { path = "../wdl-lint", version = "0.11.0" }
14+
wdl-analysis = { path = "../wdl-analysis", version = "0.8.1" }
15+
wdl-ast = { path = "../wdl-ast", version = "0.12.1" }
16+
wdl-engine = { path = "../wdl-engine", version = "0.3.1" }
17+
wdl-lint = { path = "../wdl-lint", version = "0.11.1" }
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,8 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.3.1 - 05-02-2025
11+
12+
_A patch bump was required because an error was made during the release of `wdl` v0.13.0 regarding dependencies._
13+
1014
## 0.3.0 - 05-01-2025
1115

16+
* Dependencies were updated.
17+
1218
## 0.2.0 - 04-01-2025
1319

1420
#### 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.3.0"
3+
version = "0.3.1"
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.0" }
14-
wdl-ast = { path = "../wdl-ast", version = "0.12.0" }
13+
wdl-analysis = { path = "../wdl-analysis", version = "0.8.1" }
14+
wdl-ast = { path = "../wdl-ast", version = "0.12.1" }
1515

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

wdl-engine/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.3.1 - 05-02-2025
11+
12+
_A patch bump was required because an error was made during the release of `wdl` v0.13.0 regarding dependencies._
13+
1014
## 0.3.0 - 05-01-2025
1115

1216
#### Added

0 commit comments

Comments
 (0)