diff --git a/panther_analysis_tool/main.py b/panther_analysis_tool/main.py index 0668daac..dfbef82e 100644 --- a/panther_analysis_tool/main.py +++ b/panther_analysis_tool/main.py @@ -1291,7 +1291,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.7.2") + parser.add_argument("--version", action="version", version="panther_analysis_tool 0.7.3") parser.add_argument("--debug", action="store_true", dest="debug") subparsers = parser.add_subparsers() diff --git a/setup.py b/setup.py index 08853cb8..092441cb 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.7.2', + version='0.7.3', 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.7.2.tar.gz', + download_url = 'https://github.com/panther-labs/panther_analysis_tool/archive/v0.7.3.tar.gz', keywords=['Security', 'CLI'], scripts=['bin/panther_analysis_tool'], install_requires=install_requires,