Skip to content

Commit

Permalink
release: bumps wdl to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
a-frantz committed Sep 16, 2024
1 parent 4d3b1e4 commit 4fdedb8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion wdl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions wdl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl"
version = "0.7.0"
version = "0.8.0"
authors = ["Clay McLeod <clay.l.mcleod@gmail.com>"]
rust-version.workspace = true
license.workspace = true
Expand All @@ -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 }
Expand Down

0 comments on commit 4fdedb8

Please sign in to comment.