Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 28d2e8b

Browse files
committedMar 29, 2024
Release v0.78.2
1 parent b43b96c commit 28d2e8b

File tree

5 files changed

+57
-56
lines changed

5 files changed

+57
-56
lines changed
 

‎Cargo.lock

Lines changed: 51 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vhdl_lang/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
[package]
88
name = "vhdl_lang"
9-
version = "0.78.1"
9+
version = "0.78.2"
1010
authors = ["Olof Kraigher <olof.kraigher@gmail.com>"]
1111
license = "MPL-2.0"
1212
description = "VHDL Language Frontend"
1313
repository = "https://github.com/kraigher/rust_hdl"
1414
edition = "2021"
1515

1616
[dependencies]
17-
vhdl_lang_macros = { version = "^0.78.1", path = "../vhdl_lang_macros" }
17+
vhdl_lang_macros = { version = "^0.78.2", path = "../vhdl_lang_macros" }
1818
pad = "0"
1919
fnv = "1"
2020
clap = { version = "4", features = ["derive"] }

‎vhdl_lang_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[package]
88
name = "vhdl_lang_macros"
9-
version = "0.78.1"
9+
version = "0.78.2"
1010
authors = ["Olof Kraigher <olof.kraigher@gmail.com>"]
1111
license = "MPL-2.0"
1212
description = "VHDL Language Frontend - Macros"

‎vhdl_ls/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[package]
88
name = "vhdl_ls"
9-
version = "0.78.1"
9+
version = "0.78.2"
1010
authors = ["Olof Kraigher <olof.kraigher@gmail.com>"]
1111
license = "MPL-2.0"
1212
description = "VHDL Language Server"
@@ -15,7 +15,7 @@ edition = "2021"
1515
readme = "../README.md"
1616

1717
[dependencies]
18-
vhdl_lang = { version = "^0.78.1", path = "../vhdl_lang" }
18+
vhdl_lang = { version = "^0.78.2", path = "../vhdl_lang" }
1919
serde_json = "1"
2020
serde = "1"
2121
lsp-types = "^0.95.0"

‎vhdl_ls/src/vhdl_server.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ impl VHDLServer {
155155

156156
/// Extract path of workspace root configuration file from InitializeParams
157157
fn root_uri_config_file(&self, params: &InitializeParams) -> Option<PathBuf> {
158+
#[allow(deprecated)]
158159
match params.root_uri.clone() {
159160
Some(root_uri) => root_uri
160161
.to_file_path()

0 commit comments

Comments
 (0)
Please sign in to comment.