Skip to content
This repository was archived by the owner on Sep 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions wdl-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions wdl-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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]
Expand Down
2 changes: 2 additions & 0 deletions wdl-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).
Expand Down
2 changes: 1 addition & 1 deletion wdl-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions wdl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions wdl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 }
Expand Down
Loading