diff --git a/wdl-cli/CHANGELOG.md b/wdl-cli/CHANGELOG.md index db6ee1c9e..3749fd6c5 100644 --- a/wdl-cli/CHANGELOG.md +++ b/wdl-cli/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.6.1 - 09-17-2025 + +#### Dependencies + +* Updated `wdl-engine` dependency to latest ([#607](https://github.com/stjude-rust-labs/wdl/pull/607)). + ## 0.6.0 - 09-15-2025 #### Changed diff --git a/wdl-cli/Cargo.toml b/wdl-cli/Cargo.toml index 7fe959f53..d3b10f620 100644 --- a/wdl-cli/Cargo.toml +++ b/wdl-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wdl-cli" -version = "0.6.0" +version = "0.6.1" rust-version.workspace = true license.workspace = true edition.workspace = true @@ -30,7 +30,7 @@ tracing.workspace = true url.workspace = true wdl-analysis = { path = "../wdl-analysis", version = "0.13.0" } wdl-ast = { path = "../wdl-ast", version = "0.17.0" } -wdl-engine = { path = "../wdl-engine", version = "0.8.0" } +wdl-engine = { path = "../wdl-engine", version = "0.8.1" } wdl-lint = { path = "../wdl-lint", version = "0.16.0" } [dev-dependencies] diff --git a/wdl-engine/CHANGELOG.md b/wdl-engine/CHANGELOG.md index 08bc99e03..199d3e57e 100644 --- a/wdl-engine/CHANGELOG.md +++ b/wdl-engine/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.8.1 - 09-17-2025 + #### Fixed * Fixed incorrect assertion for the TES backend ([#606](https://github.com/stjude-rust-labs/wdl/pull/606)). diff --git a/wdl-engine/Cargo.toml b/wdl-engine/Cargo.toml index d15a6631e..88a6ab631 100644 --- a/wdl-engine/Cargo.toml +++ b/wdl-engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wdl-engine" -version = "0.8.0" +version = "0.8.1" rust-version.workspace = true license.workspace = true edition.workspace = true diff --git a/wdl/CHANGELOG.md b/wdl/CHANGELOG.md index 4e4dfa763..f731a06aa 100644 --- a/wdl/CHANGELOG.md +++ b/wdl/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.18.1 - 09-17-2025 + +#### Dependencies + +* Updated `wdl-engine` dependency to latest ([#607](https://github.com/stjude-rust-labs/wdl/pull/607)). + ## 0.18.0 - 09-15-2025 #### Dependencies diff --git a/wdl/Cargo.toml b/wdl/Cargo.toml index 3a6107f80..de5109a70 100644 --- a/wdl/Cargo.toml +++ b/wdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wdl" -version = "0.18.0" +version = "0.18.1" authors.workspace = true description = "Lexing, parsing, validation, linting, documentation, analysis, and execution for Workflow Description Language (WDL) documents" rust-version.workspace = true @@ -59,9 +59,9 @@ tracing-subscriber = { workspace = true, optional = true } url = { workspace = true, optional = true } wdl-analysis = { path = "../wdl-analysis", version = "0.13.0", optional = true } wdl-ast = { path = "../wdl-ast", version = "0.17.0", optional = true } -wdl-cli = { path = "../wdl-cli", version = "0.6.0", optional = true } +wdl-cli = { path = "../wdl-cli", version = "0.6.1", optional = true } wdl-doc = { path = "../wdl-doc", version = "0.8.0", optional = true } -wdl-engine = { path = "../wdl-engine", version = "0.8.0", optional = true } +wdl-engine = { path = "../wdl-engine", version = "0.8.1", optional = true } wdl-format = { path = "../wdl-format", version = "0.11.0", optional = true } wdl-grammar = { path = "../wdl-grammar", version = "0.17.0", optional = true } wdl-lint = { path = "../wdl-lint", version = "0.16.0", optional = true }