Skip to content

Commit

Permalink
release: bump versions (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-frantz authored Jan 17, 2025
1 parent 46330df commit 410454d
Show file tree
Hide file tree
Showing 19 changed files with 50 additions and 32 deletions.
2 changes: 1 addition & 1 deletion gauntlet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
wdl = { path = "../wdl", version = "0.10.0", features = ["codespan", "analysis"] }
wdl = { path = "../wdl", version = "0.11.0", features = ["codespan", "analysis"] }
clap.workspace = true
colored.workspace = true
dirs.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions wdl-analysis/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.6.0 - 01-17-2025

### Added

* Added analysis support for the WDL 1.2 `env` declaration modifier ([#296](https://github.com/stjude-rust-labs/wdl/pull/296)).
Expand Down
6 changes: 3 additions & 3 deletions wdl-analysis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl-analysis"
version = "0.5.0"
version = "0.6.0"
rust-version.workspace = true
license.workspace = true
edition.workspace = true
Expand All @@ -11,8 +11,8 @@ description = "Analysis of Workflow Description Language (WDL) documents."
documentation = "https://docs.rs/wdl-analysis"

[dependencies]
wdl-ast = { path = "../wdl-ast", version = "0.9.0" }
wdl-format = { path = "../wdl-format", version = "0.3.0" }
wdl-ast = { path = "../wdl-ast", version = "0.10.0" }
wdl-format = { path = "../wdl-format", version = "0.4.0" }

anyhow = { workspace = true }
rowan = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions wdl-ast/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.10.0 - 01-17-2025

### Added

* Added AST support for the WDL 1.2 `env` declaration modifier ([#296](https://github.com/stjude-rust-labs/wdl/pull/296)).
Expand Down
4 changes: 2 additions & 2 deletions wdl-ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl-ast"
version = "0.9.0"
version = "0.10.0"
authors = ["Clay McLeod <[email protected]>"]
rust-version.workspace = true
edition.workspace = true
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/stjude-rust-labs/wdl"
documentation = "https://docs.rs/wdl-ast"

[dependencies]
wdl-grammar = { path = "../wdl-grammar", version = "0.10.0" }
wdl-grammar = { path = "../wdl-grammar", version = "0.11.0" }
macropol = "0.1.3"
paste = "1.0.15"
rowan = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions wdl-doc/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.1.0 - 01-17-2025

### Added

* `wdl-doc` crate for documenting WDL codebases ([#258](https://github.com/stjude-rust-labs/wdl/pull/248)).
6 changes: 3 additions & 3 deletions wdl-doc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl-doc"
version = "0.0.0"
version = "0.1.0"
license.workspace = true
edition.workspace = true
authors.workspace = true
Expand All @@ -14,8 +14,8 @@ html = "0.6.3"
indexmap.workspace = true
pulldown-cmark = "0.12.2"
tokio.workspace = true
wdl-analysis = { path = "../wdl-analysis", version = "0.5.0" }
wdl-ast = { path = "../wdl-ast", version = "0.9.0" }
wdl-analysis = { path = "../wdl-analysis", version = "0.6.0" }
wdl-ast = { path = "../wdl-ast", version = "0.10.0" }

[lints]
workspace = true
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.1.0 - 01-17-2025

### Fixed

* Limited the local task executor to a maximum level of concurrency ([#292](https://github.com/stjude-rust-labs/wdl/pull/292))
Expand Down
8 changes: 4 additions & 4 deletions wdl-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl-engine"
version = "0.0.0"
version = "0.1.0"
rust-version.workspace = true
license.workspace = true
edition.workspace = true
Expand All @@ -11,9 +11,9 @@ description = "Execution engine for Workflow Description Language (WDL) document
documentation = "https://docs.rs/wdl-engine"

[dependencies]
wdl-grammar = { version = "0.10.0", path = "../wdl-grammar" }
wdl-ast = { version = "0.9.0", path = "../wdl-ast" }
wdl-analysis = { version = "0.5.0", path = "../wdl-analysis" }
wdl-grammar = { version = "0.11.0", path = "../wdl-grammar" }
wdl-ast = { version = "0.10.0", path = "../wdl-ast" }
wdl-analysis = { version = "0.6.0", path = "../wdl-analysis" }
anyhow = { workspace = true }
ordered-float = { workspace = true }
indexmap = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions wdl-format/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.4.0 - 01-17-2025

### Added

* Leading whitespace in command text is now normalized ([#240](https://github.com/stjude-rust-labs/wdl/pull/240)).
Expand Down
4 changes: 2 additions & 2 deletions wdl-format/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl-format"
version = "0.3.0"
version = "0.4.0"
description = "Formatting of WDL (Workflow Description Language) documents"
license.workspace = true
edition.workspace = true
Expand All @@ -9,7 +9,7 @@ homepage.workspace = true
repository.workspace = true

[dependencies]
wdl-ast = { path = "../wdl-ast", version = "0.9.0", features = ["codespan"] }
wdl-ast = { path = "../wdl-ast", version = "0.10.0", features = ["codespan"] }
nonempty.workspace = true

[dev-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions wdl-grammar/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.11.0 - 01-17-2025

### Added

* Added parsing support for the WDL 1.2 `env` declaration modifier ([#296](https://github.com/stjude-rust-labs/wdl/pull/296)).
Expand Down
2 changes: 1 addition & 1 deletion wdl-grammar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl-grammar"
version = "0.10.0"
version = "0.11.0"
authors = ["Clay McLeod <[email protected]>"]
rust-version.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions wdl-lint/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.9.0 - 01-17-2025

## Added

* Improved `ShellCheck` rule fix messages and implemented the `fix` module ([#284](https://github.com/stjude-rust-labs/wdl/pull/284))
Expand Down
4 changes: 2 additions & 2 deletions wdl-lint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl-lint"
version = "0.8.0"
version = "0.9.0"
description = "Lint rules for Workflow Description Language (WDL) documents"
rust-version.workspace = true
authors.workspace = true
Expand All @@ -12,7 +12,7 @@ documentation = "https://docs.rs/wdl-lint"
readme = "../README.md"

[dependencies]
wdl-ast = { path = "../wdl-ast", version = "0.9.0" }
wdl-ast = { path = "../wdl-ast", version = "0.10.0" }
anyhow = { workspace = true }
convert_case = { workspace = true }
ftree = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions wdl-lsp/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.6.0 - 01-17-2025

## 0.5.0 - 10-22-2024

### Added
Expand Down
10 changes: 5 additions & 5 deletions wdl-lsp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl-lsp"
version = "0.5.0"
version = "0.6.0"
license.workspace = true
rust-version.workspace = true
edition.workspace = true
Expand All @@ -11,10 +11,10 @@ description = "Language Server Protocol implementation for WDL"
documentation = "https://docs.rs/wdl-lsp"

[dependencies]
wdl-analysis = { path = "../wdl-analysis", version = "0.5.0" }
wdl-ast = { path = "../wdl-ast", version = "0.9.0" }
wdl-format = { path = "../wdl-format", version = "0.3.0" }
wdl-lint = { path = "../wdl-lint", version = "0.8.0" }
wdl-analysis = { path = "../wdl-analysis", version = "0.6.0" }
wdl-ast = { path = "../wdl-ast", version = "0.10.0" }
wdl-format = { path = "../wdl-format", version = "0.4.0" }
wdl-lint = { path = "../wdl-lint", version = "0.9.0" }

anyhow = { workspace = true }
tokio = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions wdl/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.11.0 - 01-17-2025

### Added

* Added support for workflow evaluation to `wdl run` ([#292](https://github.com/stjude-rust-labs/wdl/pull/292))
Expand Down
18 changes: 9 additions & 9 deletions wdl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl"
version = "0.10.0"
version = "0.11.0"
authors = ["Clay McLeod <[email protected]>"]
rust-version.workspace = true
license.workspace = true
Expand All @@ -12,14 +12,14 @@ documentation = "https://docs.rs/wdl"
readme = "../README.md"

[dependencies]
wdl-grammar = { path = "../wdl-grammar", version = "0.10.0", optional = true }
wdl-ast = { path = "../wdl-ast", version = "0.9.0", optional = true }
wdl-lint = { path = "../wdl-lint", version = "0.8.0", optional = true }
wdl-analysis = { path = "../wdl-analysis", version = "0.5.0", optional = true }
wdl-lsp = { path = "../wdl-lsp", version = "0.5.0", optional = true }
wdl-format = { path = "../wdl-format", version = "0.3.0", optional = true }
wdl-doc = { version = "0.0.0", path = "../wdl-doc", optional = true }
wdl-engine = { path = "../wdl-engine", version = "0.0.0", optional = true }
wdl-grammar = { path = "../wdl-grammar", version = "0.11.0", optional = true }
wdl-ast = { path = "../wdl-ast", version = "0.10.0", optional = true }
wdl-lint = { path = "../wdl-lint", version = "0.9.0", optional = true }
wdl-analysis = { path = "../wdl-analysis", version = "0.6.0", optional = true }
wdl-lsp = { path = "../wdl-lsp", version = "0.6.0", optional = true }
wdl-format = { path = "../wdl-format", version = "0.4.0", optional = true }
wdl-doc = { path = "../wdl-doc", version = "0.1.0", optional = true }
wdl-engine = { path = "../wdl-engine", version = "0.1.0", optional = true }
tracing-subscriber = { workspace = true, optional = true }
clap = { workspace = true, optional = true }
anyhow = { workspace = true, optional = true }
Expand Down

0 comments on commit 410454d

Please sign in to comment.