From 9651cfe63dbda65fd81ddedec44551691af8b4c0 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Mon, 18 Feb 2013 12:42:21 +0900 Subject: [PATCH] release 20130218 --- README.md | 4 ++++ bin/pyenv-virtualenv | 2 +- bin/python-virtualenv | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb29427..cde26ac 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,10 @@ under `~/.pyenv/versions`. ## Version History +#### 20130218 + + * Add pyenv 0.2.x (rbenv 0.4.x) style help messages. + #### 20121023 * Create virtualenv with exact name of python executables. diff --git a/bin/pyenv-virtualenv b/bin/pyenv-virtualenv index df1f2a1..77ba485 100755 --- a/bin/pyenv-virtualenv +++ b/bin/pyenv-virtualenv @@ -22,7 +22,7 @@ fi eval "$(python-virtualenv --lib)" usage() { - # We can remove the sed fallback once pyenv 0.4.0 is widely available. + # We can remove the sed fallback once pyenv 0.2.0 is widely available. pyenv-help virtualenv 2>/dev/null || sed -ne '/^#/!q;s/.//;s/.//;1,4d;p' < "$0" [ -z "$1" ] || exit "$1" } diff --git a/bin/python-virtualenv b/bin/python-virtualenv index 6bfe414..bdaac2e 100755 --- a/bin/python-virtualenv +++ b/bin/python-virtualenv @@ -1,6 +1,6 @@ #!/usr/bin/env bash -PYTHON_VIRTUALENV_VERSION="20121023" +PYTHON_VIRTUALENV_VERSION="20130218" set -E exec 3<&2 # preserve original stderr at fd 3