diff --git a/README.md b/README.md index 36c085ca78..77a86a9727 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,6 @@ Use [solc-select](https://github.com/crytic/solc-select) if your contracts requi Num | Detector | What it Detects | Impact | Confidence --- | --- | --- | --- | --- - 1 | `abiencoderv2-array` | [Storage abiencoderv2 array](https://github.com/crytic/slither/wiki/Detector-Documentation#storage-abiencoderv2-array) | High | High 2 | `array-by-reference` | [Modifying storage array by value](https://github.com/crytic/slither/wiki/Detector-Documentation#modifying-storage-array-by-value) | High | High 3 | `incorrect-shift` | [The order of parameters in a shift instruction is incorrect.](https://github.com/crytic/slither/wiki/Detector-Documentation#shift-parameter-mixup) | High | High diff --git a/setup.py b/setup.py index 4e77c87665..417e54afb6 100644 --- a/setup.py +++ b/setup.py @@ -5,16 +5,16 @@ description="Slither is a Solidity static analysis framework written in Python 3.", url="https://github.com/crytic/slither", author="Trail of Bits", - version="0.8.1", + version="0.8.2", packages=find_packages(), python_requires=">=3.6", install_requires=[ "prettytable>=0.7.2", "pysha3>=1.0.2", - # "crytic-compile>=0.2.1", - "crytic-compile", + "crytic-compile>=0.2.2", + # "crytic-compile", ], - dependency_links=["git+https://github.com/crytic/crytic-compile.git@master#egg=crytic-compile"], + # dependency_links=["git+https://github.com/crytic/crytic-compile.git@master#egg=crytic-compile"], license="AGPL-3.0", long_description=open("README.md", "r", encoding="utf-8").read(), entry_points={