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 }