diff --git a/Cargo.lock b/Cargo.lock index 30182f17..6f90b272 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -925,7 +925,7 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "vhdl_lang" -version = "0.77.0" +version = "0.78.0" dependencies = [ "assert_matches", "brunch", @@ -947,7 +947,7 @@ dependencies = [ [[package]] name = "vhdl_lang_macros" -version = "0.77.0" +version = "0.78.0" dependencies = [ "quote", "syn 2.0.22", @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "vhdl_ls" -version = "0.77.0" +version = "0.78.0" dependencies = [ "clap", "env_logger", diff --git a/vhdl_lang/Cargo.toml b/vhdl_lang/Cargo.toml index e4f288d9..a572fdd6 100644 --- a/vhdl_lang/Cargo.toml +++ b/vhdl_lang/Cargo.toml @@ -6,7 +6,7 @@ [package] name = "vhdl_lang" -version = "0.77.0" +version = "0.78.0" authors = ["Olof Kraigher "] license = "MPL-2.0" description = "VHDL Language Frontend" @@ -14,7 +14,7 @@ repository = "https://github.com/kraigher/rust_hdl" edition = "2021" [dependencies] -vhdl_lang_macros = { version = "^0.77.0", path = "../vhdl_lang_macros" } +vhdl_lang_macros = { version = "^0.78.0", path = "../vhdl_lang_macros" } pad = "0" fnv = "1" clap = { version = "4", features = ["derive"] } diff --git a/vhdl_lang_macros/Cargo.toml b/vhdl_lang_macros/Cargo.toml index 4ac51057..bd0aa5e2 100644 --- a/vhdl_lang_macros/Cargo.toml +++ b/vhdl_lang_macros/Cargo.toml @@ -6,7 +6,7 @@ [package] name = "vhdl_lang_macros" -version = "0.77.0" +version = "0.78.0" authors = ["Olof Kraigher "] license = "MPL-2.0" description = "VHDL Language Frontend - Macros" diff --git a/vhdl_ls/Cargo.toml b/vhdl_ls/Cargo.toml index 1b1fd795..700d85e9 100644 --- a/vhdl_ls/Cargo.toml +++ b/vhdl_ls/Cargo.toml @@ -6,15 +6,16 @@ [package] name = "vhdl_ls" -version = "0.77.0" +version = "0.78.0" authors = ["Olof Kraigher "] license = "MPL-2.0" description = "VHDL Language Server" repository = "https://github.com/kraigher/rust_hdl" edition = "2021" +readme = "../README.md" [dependencies] -vhdl_lang = { version = "^0.77.0", path = "../vhdl_lang" } +vhdl_lang = { version = "^0.78.0", path = "../vhdl_lang" } serde_json = "1" serde = "1" lsp-types = "^0.94.0"