diff --git a/README.md b/README.md index 2ec3caa..e008133 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,6 @@ You can also activate and deactivate a pyenv virtualenv manually: Removing the directory in `~/.pyenv/versions` will delete the virtualenv, or you can run: pyenv uninstall my-virtual-env - ### virtualenv and pyvenv @@ -157,6 +156,12 @@ You can set certain environment variables to control pyenv-virtualenv. ## Version History +#### 20150526 + +* Use `typeset -g` with `precmd_functions` (#75) +* activate: display setup instructions only with `PYENV_VIRTUALENV_INIT=0` (#78) +* Ignore failure of pyenv activate (#68) + #### 20150119 * Ignore errors from `pyenv-version-name` since it might fail if there is configuration error (yyuu/pyenv#291) diff --git a/bin/pyenv-virtualenv b/bin/pyenv-virtualenv index e9eaf27..400bdcf 100755 --- a/bin/pyenv-virtualenv +++ b/bin/pyenv-virtualenv @@ -9,7 +9,7 @@ # -f/--force Install even if the version appears to be installed already # -PYENV_VIRTUALENV_VERSION="20150119" +PYENV_VIRTUALENV_VERSION="20150526" set -e [ -n "$PYENV_DEBUG" ] && set -x diff --git a/test/version.bats b/test/version.bats index b29bfe4..f1fc838 100644 --- a/test/version.bats +++ b/test/version.bats @@ -4,7 +4,7 @@ load test_helper setup() { export PYENV_ROOT="${TMP}/pyenv" - export PYENV_VIRTUALENV_VERSION="20150119" + export PYENV_VIRTUALENV_VERSION="20150526" } @test "display virtualenv version" {