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

Commit c684c74

Browse files
release: bump versions (#384)
Co-authored-by: a-frantz <28660237+a-frantz@users.noreply.github.com>
1 parent 05263b8 commit c684c74

File tree

19 files changed

+50
-32
lines changed

19 files changed

+50
-32
lines changed

gauntlet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition.workspace = true
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
wdl = { path = "../wdl", version = "0.11.0", features = ["codespan", "analysis"] }
13+
wdl = { path = "../wdl", version = "0.12.0", features = ["codespan", "analysis"] }
1414
clap.workspace = true
1515
colored.workspace = true
1616
dirs.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.7.0 - 04-01-2025
11+
1012
### Added
1113

1214
* `missing_call_input` now generates a warning for missing inputs when nested inputs are allowed, without changing the existing error behavior ([#344]https://github.com/stjude-rust-labs/wdl/pull/344).

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.6.0"
3+
version = "0.7.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.10.0" }
15-
wdl-format = { path = "../wdl-format", version = "0.4.0" }
14+
wdl-ast = { path = "../wdl-ast", version = "0.11.0" }
15+
wdl-format = { path = "../wdl-format", version = "0.5.0" }
1616

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

wdl-ast/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 - 04-01-2025
11+
1012
### Changed
1113

1214
* Refactored AST API to support different syntax tree element representations ([#355](https://github.com/stjude-rust-labs/wdl/pull/355)).

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.10.0"
3+
version = "0.11.0"
44
authors = ["Clay McLeod <clay.l.mcleod@gmail.com>"]
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.11.0" }
14+
wdl-grammar = { path = "../wdl-grammar", version = "0.12.0" }
1515
macropol = "0.1.3"
1616
paste = "1.0.15"
1717
rowan = { workspace = true }

wdl-doc/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.2.0 - 04-01-2025
11+
1012
### Added
1113

1214
* Basic CSS styling using TailwindCSS ([#262](https://github.com/stjude-rust-labs/wdl/pull/262)).

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.1.0"
3+
version = "0.2.0"
44
description = "Documentation generator for Workflow Description Language (WDL) documents."
55
license.workspace = true
66
edition.workspace = true
@@ -17,8 +17,8 @@ maud.workspace = true
1717
pulldown-cmark.workspace = true
1818
pathdiff.workspace = true
1919
tokio.workspace = true
20-
wdl-analysis = { path = "../wdl-analysis", version = "0.6.0" }
21-
wdl-ast = { path = "../wdl-ast", version = "0.10.0" }
20+
wdl-analysis = { path = "../wdl-analysis", version = "0.7.0" }
21+
wdl-ast = { path = "../wdl-ast", version = "0.11.0" }
2222

2323
[lints]
2424
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.2.0 - 04-01-2025
11+
1012
### Added
1113

1214
* Added support for cloud storage URIs (#[367](https://github.com/stjude-rust-labs/wdl/pull/367)).

wdl-engine/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wdl-engine"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
rust-version.workspace = true
55
license.workspace = true
66
edition.workspace = true
@@ -11,9 +11,9 @@ description = "Execution engine for Workflow Description Language (WDL) document
1111
documentation = "https://docs.rs/wdl-engine"
1212

1313
[dependencies]
14-
wdl-grammar = { version = "0.11.0", path = "../wdl-grammar" }
15-
wdl-ast = { version = "0.10.0", path = "../wdl-ast" }
16-
wdl-analysis = { version = "0.6.0", path = "../wdl-analysis" }
14+
wdl-grammar = { version = "0.12.0", path = "../wdl-grammar" }
15+
wdl-ast = { version = "0.11.0", path = "../wdl-ast" }
16+
wdl-analysis = { version = "0.7.0", path = "../wdl-analysis" }
1717
anyhow = { workspace = true }
1818
ordered-float = { workspace = true }
1919
indexmap = { workspace = true }

wdl-format/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.5.0 - 04-01-2025
11+
1012
### Changed
1113

1214
* Updated to use new `wdl-ast` API ([#355](https://github.com/stjude-rust-labs/wdl/pull/355)).

0 commit comments

Comments
 (0)