From cb68b5dc76a441431f027dd5e7f961f9c757d161 Mon Sep 17 00:00:00 2001 From: Ajin Abraham Date: Thu, 14 Nov 2024 09:20:26 -0800 Subject: [PATCH] HOTFIX: Install semgrep 1.86.0 as a dependency --- mobsfscan/__init__.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mobsfscan/__init__.py b/mobsfscan/__init__.py index bfe6a3e..3c77c6b 100644 --- a/mobsfscan/__init__.py +++ b/mobsfscan/__init__.py @@ -6,7 +6,7 @@ __title__ = 'mobsfscan' __authors__ = 'Ajin Abraham' __copyright__ = f'Copyright {datetime.now().year} Ajin Abraham, OpenSecurity' -__version__ = '0.4.3' +__version__ = '0.4.4' __version_info__ = tuple(int(i) for i in __version__.split('.')) __all__ = [ '__title__', diff --git a/setup.py b/setup.py index c992d26..593d978 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,7 @@ def get_version(rel_path): install_requires=[ 'colorama>=0.4.5', 'libsast>=3.1.0', + 'semgrep==1.86.0', 'sarif-om>=1.0.4', 'jschema-to-python>=1.2.3', 'tabulate>=0.8.10',