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

Commit 0fa12b0

Browse files
release: bump crate versions (#521)
Co-authored-by: Ari Frantz <ari.frantz@stjude.org>
1 parent 0995bb0 commit 0fa12b0

File tree

23 files changed

+66
-45
lines changed

23 files changed

+66
-45
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,3 @@ jobs:
1515
- run: cargo run --release --bin ci -- publish
1616
env:
1717
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
18-
- name: Release
19-
uses: softprops/action-gh-release@v2
20-
with:
21-
generate_release_notes: true
22-
make_latest: true

RELEASE.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ The first step in making a release is to run the [`bump` GitHub action](https://
1414

1515
Then the `bump` action will open a PR with the above changes for manual review. Please ensure everything looks good and the CI is passing before merging the PR!
1616

17-
Once the bump PR merges, tag the HEAD commit with `wdl-v{VERSION}` (where `VERSION` matches the latest version in `wdl/Cargo.toml`) and the CI should handle the rest!
17+
Once the bump PR merges, tag the HEAD commit with `wdl-v{VERSION}` (where `VERSION` matches the latest version in `wdl/Cargo.toml`) and the CI should handle publishing each crate to crates.io.
18+
19+
Next up is making a GitHub release, which should be done manually. TODO (a-frantz): document this

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.14.0", features = ["codespan", "analysis"] }
12+
wdl = { path = "../wdl", version = "0.15.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.10.0 - 07-09-2025
11+
1012
#### Added
1113

1214
* Added support for struct members, struct literals and call inputs in `goto_definition` ([#491](https://github.com/stjude-rust-labs/wdl/pull/491)).

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.9.0"
3+
version = "0.10.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.13.0" }
15-
wdl-format = { path = "../wdl-format", version = "0.7.0" }
14+
wdl-ast = { path = "../wdl-ast", version = "0.14.0" }
15+
wdl-format = { path = "../wdl-format", version = "0.8.0" }
1616

1717
anyhow = { workspace = true }
1818
convert_case = { 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.14.0 - 07-09-2025
11+
1012
#### Changed
1113

1214
* Removed inherent impls of `can_cast()`, `cast()`, and `inner()` for `Expr` and `PlaceholderOption` that were redundant with methods on `AstNode` ([#480](https://github.com/stjude-rust-labs/wdl/pull/480)).

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.13.0"
3+
version = "0.14.0"
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.13.0" }
14+
wdl-grammar = { path = "../wdl-grammar", version = "0.14.0" }
1515

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

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.3.0 - 07-09-2025
11+
1012
#### Changed
1113

1214
* Source now has a default implementation ([#476](https://github.com/stjude-rust-labs/wdl/pull/476)).

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.2.0"
3+
version = "0.3.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.9.0" }
15-
wdl-ast = { path = "../wdl-ast", version = "0.13.0" }
16-
wdl-engine = { path = "../wdl-engine", version = "0.4.0" }
17-
wdl-lint = { path = "../wdl-lint", version = "0.12.0" }
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" }
1818

1919
anyhow.workspace = true
2020
codespan-reporting.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.5.0 - 07-09-2025
11+
1012
#### Added
1113

1214
* `wdl-doc` crate is feature-complete-enough for a beta release :tada: ([#339](https://github.com/stjude-rust-labs/wdl/pull/339)).

0 commit comments

Comments
 (0)