release 20130218

This commit is contained in:
Yamashita Yuu
2013-02-18 12:42:21 +09:00
parent 317fcdbfe7
commit 9651cfe63d
3 changed files with 6 additions and 2 deletions

View File

@@ -56,6 +56,10 @@ under `~/.pyenv/versions`.
## Version History ## Version History
#### 20130218
* Add pyenv 0.2.x (rbenv 0.4.x) style help messages.
#### 20121023 #### 20121023
* Create virtualenv with exact name of python executables. * Create virtualenv with exact name of python executables.

View File

@@ -22,7 +22,7 @@ fi
eval "$(python-virtualenv --lib)" eval "$(python-virtualenv --lib)"
usage() { 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" pyenv-help virtualenv 2>/dev/null || sed -ne '/^#/!q;s/.//;s/.//;1,4d;p' < "$0"
[ -z "$1" ] || exit "$1" [ -z "$1" ] || exit "$1"
} }

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
PYTHON_VIRTUALENV_VERSION="20121023" PYTHON_VIRTUALENV_VERSION="20130218"
set -E set -E
exec 3<&2 # preserve original stderr at fd 3 exec 3<&2 # preserve original stderr at fd 3