diff --git a/mythril/__version__.py b/mythril/__version__.py index 03a1afc5..98d54729 100644 --- a/mythril/__version__.py +++ b/mythril/__version__.py @@ -4,4 +4,4 @@ This file is suitable for sourcing inside POSIX shell, e.g. bash as well as for importing into Python. """ -__version__ = "v0.21.0" +__version__ = "v0.21.2" diff --git a/setup.py b/setup.py index 58931527..d76f546e 100755 --- a/setup.py +++ b/setup.py @@ -94,9 +94,9 @@ class VerifyVersionCommand(install): """""" tag = os.getenv("CIRCLE_TAG") - if tag != VERSION: + if tag != about["__version__"]: info = "Git tag: {0} does not match the version of this app: {1}".format( - tag, VERSION + tag, about["__version__"] ) sys.exit(info)