From 4d3b1e4fb975bf3c44a7c16831600e938489b5ab Mon Sep 17 00:00:00 2001 From: Andrew Frantz Date: Mon, 16 Sep 2024 15:43:32 -0400 Subject: [PATCH] release: bumps wdl-lsp to v0.3.0 --- wdl-lsp/CHANGELOG.md | 2 ++ wdl-lsp/Cargo.toml | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/wdl-lsp/CHANGELOG.md b/wdl-lsp/CHANGELOG.md index 3e21cc671..ad7d1e377 100644 --- a/wdl-lsp/CHANGELOG.md +++ b/wdl-lsp/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.3.0 - 09-16-2024 + ### Changed * Use `tracing` events instead of the `log` crate ([#172](https://github.com/stjude-rust-labs/wdl/pull/172)) diff --git a/wdl-lsp/Cargo.toml b/wdl-lsp/Cargo.toml index 606b0938c..9193e4e2c 100644 --- a/wdl-lsp/Cargo.toml +++ b/wdl-lsp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wdl-lsp" -version = "0.2.0" +version = "0.3.0" license.workspace = true rust-version.workspace = true edition.workspace = true @@ -11,9 +11,9 @@ description = "Language Server Protocol implementation for WDL" documentation = "https://docs.rs/wdl-lsp" [dependencies] -wdl-ast = { path = "../wdl-ast", version = "0.6.0" } -wdl-lint = { path = "../wdl-lint", version = "0.5.0" } -wdl-analysis = { path = "../wdl-analysis", version = "0.2.0" } +wdl-ast = { path = "../wdl-ast", version = "0.7.1" } +wdl-lint = { path = "../wdl-lint", version = "0.6.0" } +wdl-analysis = { path = "../wdl-analysis", version = "0.3.0" } anyhow = { workspace = true } tokio = { workspace = true } tower-lsp = { workspace = true }