diff --git a/HISTORY.txt b/HISTORY.txt index 573344b3..52255fe6 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,3 +1,5 @@ +6.2.9: + - Bug fix. 6.2.8: - Bug fix. 6.2.7: diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 42225181..b1a5c47e 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -3,4 +3,4 @@ # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = '6.2.8' +__version__ = '6.2.9' diff --git a/pipenv/cli.py b/pipenv/cli.py index de2cb6c3..0a13b074 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -877,7 +877,7 @@ def format_help(help): """Formats the help string.""" help = help.replace('Options:', str(crayons.white('Options:', bold=True))) - help = help.replace('Usage: pipenv', str('Usage: {0}'.format(crayons.white('☤ pipenv', bold=True)))) + help = help.replace('Usage: pipenv', str('Usage: {0}'.format(crayons.white('pipenv', bold=True)))) help = help.replace(' graph', str(crayons.green(' graph'))) help = help.replace(' check', str(crayons.green(' check')))