Skip to content

Commit

Permalink
Merge pull request #584 from airbnb/ryandeivert-1.6.0-bump
Browse files Browse the repository at this point in the history
bumping version from 1.5.0 -> 1.6.0
  • Loading branch information
ryandeivert authored Jan 26, 2018
2 parents 538e92a + fc2a46f commit 74ddbc6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 8 additions & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
import os
import string


from stream_alert import __version__ as version
from stream_alert.shared import metrics
from stream_alert_cli import __version__ as version
from stream_alert_cli.logger import LOGGER_CLI
from stream_alert_cli.runner import cli_runner
from app_integrations.apps.app_base import StreamAlertApp
Expand Down Expand Up @@ -1444,6 +1445,12 @@ def build_parser():
prog='manage.py',
usage=usage,
formatter_class=RawTextHelpFormatter)

parser.add_argument(
'-v', '--version',
action='version',
version='StreamAlert v{}'.format(version)
)
subparsers = parser.add_subparsers()
_add_output_subparser(subparsers)
_add_live_test_subparser(subparsers)
Expand Down
2 changes: 1 addition & 1 deletion stream_alert/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""StreamAlert version."""
__version__ = '1.5.0'
__version__ = '1.6.0'
2 changes: 0 additions & 2 deletions stream_alert_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
"""Define the version of the CLI."""
__version__ = '1.4.0'

0 comments on commit 74ddbc6

Please sign in to comment.