From d60590c1e85ce835006680d7311877e84e2cca2e Mon Sep 17 00:00:00 2001 From: Ben Sebastian Date: Fri, 24 Sep 2021 14:07:07 -0400 Subject: [PATCH] Release version 0.10.0 (#137) Co-authored-by: Ben Sebastian --- panther_analysis_tool/main.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/panther_analysis_tool/main.py b/panther_analysis_tool/main.py index d9db2232..b4fa2220 100644 --- a/panther_analysis_tool/main.py +++ b/panther_analysis_tool/main.py @@ -1278,7 +1278,7 @@ def setup_parser() -> argparse.ArgumentParser: + "managing Panther policies and rules.", prog="panther_analysis_tool", ) - parser.add_argument("--version", action="version", version="panther_analysis_tool 0.9.0") + parser.add_argument("--version", action="version", version="panther_analysis_tool 0.10.0") parser.add_argument("--debug", action="store_true", dest="debug") subparsers = parser.add_subparsers() diff --git a/setup.py b/setup.py index 705156cd..a2acd1c2 100644 --- a/setup.py +++ b/setup.py @@ -21,14 +21,14 @@ name='panther_analysis_tool', packages=['panther_analysis_tool', 'panther_analysis_tool/log_schemas'], package_dir={'log_schemas': 'panther_analysis_tool/log_schemas'}, - version='0.9.0', + version='0.10.0', license='AGPL-3.0', description= 'Panther command line interface for writing, testing, and packaging policies/rules.', author='Panther Labs Inc', author_email='pypi@runpanther.io', url='https://github.com/panther-labs/panther_analysis_tool', - download_url = 'https://github.com/panther-labs/panther_analysis_tool/archive/v0.9.0.tar.gz', + download_url = 'https://github.com/panther-labs/panther_analysis_tool/archive/v0.10.0.tar.gz', keywords=['Security', 'CLI'], scripts=['bin/panther_analysis_tool'], install_requires=install_requires,