From 4fdedb8a79b10e3088e86b2b46a4e5cf8f85f2bc Mon Sep 17 00:00:00 2001 From: Andrew Frantz Date: Mon, 16 Sep 2024 15:49:36 -0400 Subject: [PATCH] release: bumps wdl to 0.8.0 --- wdl/CHANGELOG.md | 6 +++++- wdl/Cargo.toml | 12 ++++++------ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/wdl/CHANGELOG.md b/wdl/CHANGELOG.md index ca3c357f2..0137029df 100644 --- a/wdl/CHANGELOG.md +++ b/wdl/CHANGELOG.md @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.8.0 - 09-16-2024 + ### Fixed * Fixed CLI tool to not output colors when stdio is not a terminal ([#163](https://github.com/stjude-rust-labs/wdl/pull/163)). ### Changed + +* Updated `wdl` crate dependencies. * Use `tracing-subscriber` to configure tracing env ([#172](https://github.com/stjude-rust-labs/wdl/pull/172)) ## 0.7.0 - 08-22-2024 @@ -40,7 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -* Updated `wdl` crate dependencies +* Updated `wdl` crate dependencies. ## 0.4.0 - 06-13-2024 diff --git a/wdl/Cargo.toml b/wdl/Cargo.toml index abd0073e8..5ad8babae 100644 --- a/wdl/Cargo.toml +++ b/wdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wdl" -version = "0.7.0" +version = "0.8.0" authors = ["Clay McLeod "] rust-version.workspace = true license.workspace = true @@ -12,11 +12,11 @@ documentation = "https://docs.rs/wdl" readme = "../README.md" [dependencies] -wdl-grammar = { path = "../wdl-grammar", version = "0.7.0", optional = true } -wdl-ast = { path = "../wdl-ast", version = "0.6.0", optional = true } -wdl-lint = { path = "../wdl-lint", version = "0.5.0", optional = true } -wdl-analysis = { path = "../wdl-analysis", version = "0.2.0", optional = true } -wdl-lsp = { path = "../wdl-lsp", version = "0.2.0", optional = true } +wdl-grammar = { path = "../wdl-grammar", version = "0.8.0", optional = true } +wdl-ast = { path = "../wdl-ast", version = "0.7.1", optional = true } +wdl-lint = { path = "../wdl-lint", version = "0.6.0", optional = true } +wdl-analysis = { path = "../wdl-analysis", version = "0.3.0", optional = true } +wdl-lsp = { path = "../wdl-lsp", version = "0.3.0", optional = true } tracing-subscriber = { workspace = true, optional = true } clap = { workspace = true, optional = true } anyhow = { workspace = true, optional = true }