diff --git a/panther_analysis_tool/main.py b/panther_analysis_tool/main.py index fb597053..18ac8ea0 100644 --- a/panther_analysis_tool/main.py +++ b/panther_analysis_tool/main.py @@ -1267,7 +1267,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.6.1") + parser.add_argument("--version", action="version", version="panther_analysis_tool 0.7.0") parser.add_argument("--debug", action="store_true", dest="debug") subparsers = parser.add_subparsers() diff --git a/setup.py b/setup.py index 1bef7625..a8e745ed 100644 --- a/setup.py +++ b/setup.py @@ -20,14 +20,14 @@ setup( name='panther_analysis_tool', packages=['panther_analysis_tool'], - version='0.6.1', + version='0.7.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.6.1.tar.gz', + download_url = 'https://github.com/panther-labs/panther_analysis_tool/archive/v0.7.0.tar.gz', keywords=['Security', 'CLI'], scripts=['bin/panther_analysis_tool'], install_requires=install_requires,