From 003ea01b97b4ba68be6c5081ae7355e848ec04e5 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Thu, 7 Mar 2013 13:12:17 +0900 Subject: [PATCH] release v20130307 --- README.md | 4 ++-- bin/pyenv-virtualenv | 4 ++-- bin/python-virtualenv | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 805e343..5c31fb7 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,9 @@ under `~/.pyenv/versions`. ## Version History -#### 2013XXYY +#### 20130307 - * Preparing for renaming project; `s/python-virtualenv/pyenv-virtualenv/g` + * Rename the project; `s/python-virtualenv/pyenv-virtualenv/g` * The `pyenv-virtualenv` script is not depending on `python-virtualenv` now. `python-virtualenv` will left for compatibility and will not continue for future releases. * Update virtualenv version; 1.8.2 -> 1.8.4 diff --git a/bin/pyenv-virtualenv b/bin/pyenv-virtualenv index 7bb5076..454c691 100755 --- a/bin/pyenv-virtualenv +++ b/bin/pyenv-virtualenv @@ -7,7 +7,7 @@ # -v/--verbose Verbose mode: print compilation status to stdout # -PYENV_VIRTUALENV_VERSION="20130218" +PYENV_VIRTUALENV_VERSION="20130307" set -e [ -n "$PYENV_DEBUG" ] && set -x @@ -131,7 +131,7 @@ VIRTUALENV_PATH="${PYENV_ROOT}/versions/${VIRTUALENV_NAME}" # create virtualenv VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/libexec/pyenv-virtualenv/virtualenv.py" -[ -f "${VIRTUALENV}" ] || VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/python-libexec/virtualenv.py" # backward compatibility before v20130218 +[ -f "${VIRTUALENV}" ] || VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/python-libexec/virtualenv.py" # backward compatibility before v20130307 [ -f "${VIRTUALENV}" ] || VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/libexec/virtualenv.py" "${PYTHON_BIN}" "${VIRTUALENV}" "${VIRTUALENV_OPTIONS[@]}" "${VIRTUALENV_PATH}" diff --git a/bin/python-virtualenv b/bin/python-virtualenv index bdaac2e..3e54400 100755 --- a/bin/python-virtualenv +++ b/bin/python-virtualenv @@ -1,6 +1,6 @@ #!/usr/bin/env bash -PYTHON_VIRTUALENV_VERSION="20130218" +PYTHON_VIRTUALENV_VERSION="20130307" set -E exec 3<&2 # preserve original stderr at fd 3