From 99436e6140a44915f1a613b057f16220b3a9748d Mon Sep 17 00:00:00 2001 From: Ajin Abraham Date: Mon, 25 Jan 2021 17:09:31 -0500 Subject: [PATCH] upgrade semgrep --- libsast/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libsast/__init__.py b/libsast/__init__.py index e01511f..d33a335 100644 --- a/libsast/__init__.py +++ b/libsast/__init__.py @@ -8,7 +8,7 @@ __title__ = 'libsast' __authors__ = 'Ajin Abraham' __copyright__ = 'Copyright 2020 Ajin Abraham, OpenSecurity' -__version__ = '1.3.7' +__version__ = '1.3.8' __version_info__ = tuple(int(i) for i in __version__.split('.')) __all__ = [ 'Scanner', diff --git a/setup.py b/setup.py index 8694bec..b2e3c50 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def get_requires(): requires = [ 'requests>=2.22.0', 'pyyaml>=5.3', - 'semgrep==0.37.0;platform_system!="Windows"', + 'semgrep==0.38.0;platform_system!="Windows"', ] return requires