From 8f8bfeff6ae16e28559d9d493d36f1a2f9a696a7 Mon Sep 17 00:00:00 2001 From: Jean Cvllr <31145285+CJ42@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:51:31 +0100 Subject: [PATCH 1/3] Add instruction for how to upgrade slither in the CLI --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index f1e491103f..34932b3b49 100644 --- a/README.md +++ b/README.md @@ -173,6 +173,12 @@ Slither requires Python 3.6+ and [solc](https://github.com/ethereum/solidity/), pip3 install slither-analyzer ``` +If your slither version is behind the latest available release, you can upgrade slither to stay up to date with the latest features and bug fixes using the following command: + +```console +pip install --upgrade slither-analyzer +``` + ### Using Git ```bash From cadcf1e90c64f839cdbeea17dba25c3f7633f158 Mon Sep 17 00:00:00 2001 From: alpharush <0xalpharush@protonmail.com> Date: Fri, 23 Aug 2024 07:54:36 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34932b3b49..bf0f3e4692 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ Slither requires Python 3.6+ and [solc](https://github.com/ethereum/solidity/), pip3 install slither-analyzer ``` -If your slither version is behind the latest available release, you can upgrade slither to stay up to date with the latest features and bug fixes using the following command: +#### How to upgrade ```console pip install --upgrade slither-analyzer From 7aa0367748e9d453d8becf9474f9173058cbbab9 Mon Sep 17 00:00:00 2001 From: alpharush <0xalpharush@protonmail.com> Date: Fri, 23 Aug 2024 07:54:49 -0500 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf0f3e4692..174760b6e4 100644 --- a/README.md +++ b/README.md @@ -176,7 +176,7 @@ pip3 install slither-analyzer #### How to upgrade ```console -pip install --upgrade slither-analyzer +python3 -m pip install --upgrade slither-analyzer ``` ### Using Git