diff --git a/README.md b/README.md index 80f66cd..4dd1f69 100644 --- a/README.md +++ b/README.md @@ -45,12 +45,12 @@ The initial analysis may take some time, but from the second run onward, compile To install RustOwl command, run the command below. ```bash -curl -L "https://github.com/cordx56/rustowl/releases/download/v0.0.3/install.sh" | bash +curl -L "https://github.com/cordx56/rustowl/releases/download/v0.0.4/install.sh" | bash ``` ### VSCode -Download VSCode extension file ( `.vsix` ) from [this link](https://github.com/cordx56/rustowl/releases/download/v0.0.3/rustowl-vscode-0.0.3.vsix). +Download VSCode extension file ( `.vsix` ) from [this link](https://github.com/cordx56/rustowl/releases/download/v0.0.4/rustowl-vscode-0.0.4.vsix). Press `Cmd+Shift+P` on macOS or `Ctrl+Shift+P` on other systems to open the command palette in VSCode. Type `install vsix` in the command palette, and `Extensions: Install from VSIX...` will appear. diff --git a/rustowl/Cargo.lock b/rustowl/Cargo.lock index 7c97f27..3bd82fe 100644 --- a/rustowl/Cargo.lock +++ b/rustowl/Cargo.lock @@ -598,7 +598,7 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustowl" -version = "0.0.3" +version = "0.0.4" dependencies = [ "log", "mktemp", diff --git a/rustowl/Cargo.toml b/rustowl/Cargo.toml index 841aca8..c3eb4e7 100644 --- a/rustowl/Cargo.toml +++ b/rustowl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustowl" -version = "0.0.3" +version = "0.0.4" edition = "2021" default-run = "cargo-owl" diff --git a/rustowl/install.sh b/rustowl/install.sh index 3be96fb..0ec1734 100755 --- a/rustowl/install.sh +++ b/rustowl/install.sh @@ -1,6 +1,6 @@ #!/bin/bash -VERSION="v0.0.3" +VERSION="v0.0.4" function install_rust() { curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -q -y --profile minimal diff --git a/vscode/package.json b/vscode/package.json index 69b6071..d56fe81 100644 --- a/vscode/package.json +++ b/vscode/package.json @@ -2,7 +2,7 @@ "name": "rustowl-vscode", "displayName": "rustowl-vscode", "description": "Visualize ownership and lifetimes in Rust", - "version": "0.0.3", + "version": "0.0.4", "engines": { "vscode": "^1.95.0" },