diff --git a/HISTORY.txt b/HISTORY.txt index e9ae36a6..a9474a06 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,3 +1,5 @@ +0.2.3: + - Support for Fish and Csh shells. 0.2.1: - Trove classifiers. 0.2.0: diff --git a/pipenv/cli.py b/pipenv/cli.py index d0604466..90716e5c 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -14,7 +14,7 @@ from . import _pipfile as pipfile from .project import Project from .utils import convert_deps_from_pip, convert_deps_to_pip -__version__ = '0.2.2' +__version__ = '0.2.3' project = Project() diff --git a/setup.py b/setup.py index fb8f44db..7b8802ff 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ required = [ setup( name='pipenv', - version='0.2.2', + version='0.2.3', description='Sacred Marriage of Pipfile, Pip, & Virtualenv.', long_description=long_description, author='Kenneth Reitz',