From 5cbf144308f2487fc405eeaa82a1ef492236de34 Mon Sep 17 00:00:00 2001 From: Ajin Abraham Date: Tue, 29 Aug 2023 21:52:30 -0700 Subject: [PATCH] libsast bump performance improvements (#112) --- njsscan/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/njsscan/__init__.py b/njsscan/__init__.py index 038c7bd..9c29854 100644 --- a/njsscan/__init__.py +++ b/njsscan/__init__.py @@ -6,7 +6,7 @@ __title__ = 'njsscan' __authors__ = 'Ajin Abraham' __copyright__ = f'Copyright {datetime.now().year} Ajin Abraham, OpenSecurity' -__version__ = '0.3.5' +__version__ = '0.3.6' __version_info__ = tuple(int(i) for i in __version__.split('.')) __all__ = [ '__title__', diff --git a/setup.py b/setup.py index f9a4fbc..a52fb48 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def get_version(rel_path): long_description_content_type='text/markdown', install_requires=[ 'colorama>=0.4.5', - 'libsast>=1.5.3', + 'libsast>=2.0.0', 'sarif-om>=1.0.4', 'jschema-to-python>=1.2.3', 'tabulate>=0.8.10',