diff --git a/Cargo.lock b/Cargo.lock index 51792bf..8c9b9f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -572,7 +572,7 @@ dependencies = [ [[package]] name = "py2erg" -version = "0.0.32" +version = "0.0.33" dependencies = [ "erg_common", "erg_compiler", @@ -582,7 +582,7 @@ dependencies = [ [[package]] name = "pylyzer" -version = "0.0.32" +version = "0.0.33" dependencies = [ "els", "erg_common", diff --git a/Cargo.toml b/Cargo.toml index 7513a44..e3d504c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ members = [ ] [workspace.package] -version = "0.0.32" +version = "0.0.33" authors = ["Shunsuke Shibayama "] license = "MIT OR Apache-2.0" edition = "2021" @@ -47,7 +47,7 @@ erg_common = { workspace = true } els = { workspace = true } rustpython-parser = { workspace = true } rustpython-ast = { workspace = true } -py2erg = { version = "0.0.32", path = "./crates/py2erg" } +py2erg = { version = "0.0.33", path = "./crates/py2erg" } [lib] path = "src/lib.rs" diff --git a/README.md b/README.md index 67d7098..201b629 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,13 @@ pylyzer as a language server supports various features, such as completion and r ![autoimport](https://raw.githubusercontent.com/mtshiba/pylyzer/main/images/autoimport.gif) -## [VSCode extension](https://github.com/mtshiba/pylyzer/blob/main/extension) +## VSCode extension + +You can install the VSCode extension from the [Marketplace](https://marketplace.visualstudio.com/items?itemName=pylyzer.pylyzer) or from the command line: + +```sh +code --install-extension pylyzer.pylyzer +``` ## What is the difference from [Ruff](https://github.com/charliermarsh/ruff)?