release 0.1.2

This commit is contained in:
Yamashita Yuu 2012-10-23 15:24:41 +09:00
parent ffa2505450
commit b520475b22
3 changed files with 8 additions and 2 deletions

View file

@ -343,6 +343,12 @@ tracker](https://github.com/yyuu/pyenv/issues).
### <a name="section_4.1"></a> 4.1 Version History
**0.1.2** (October 23, 2012)
* Add push/pop for version stack management.
* Support multiple versions via environment variable.
* Now GCC is not a requirement to build CPython and Stackless.
**0.1.1** (September 3, 2012)
* Support multiple versions of Python at a time.

View file

@ -60,7 +60,7 @@ shopt -u nullglob
command="$1"
case "$command" in
"" | "-h" | "--help" )
echo -e "pyenv 0.1.2git\n$(pyenv-help)" >&2
echo -e "pyenv 0.1.2\n$(pyenv-help)" >&2
;;
* )
command_path="$(command -v "pyenv-$command" || true)"

View file

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