Browse Source

release v20130307

pull/3/merge v20130307
Yamashita Yuu 11 years ago
parent
commit
003ea01b97
3 changed files with 5 additions and 5 deletions
  1. +2
    -2
      README.md
  2. +2
    -2
      bin/pyenv-virtualenv
  3. +1
    -1
      bin/python-virtualenv

+ 2
- 2
README.md View File

@ -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

+ 2
- 2
bin/pyenv-virtualenv View File

@ -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}"

+ 1
- 1
bin/python-virtualenv View File

@ -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

Loading…
Cancel
Save