mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
release 0.1.2
This commit is contained in:
parent
ffa2505450
commit
b520475b22
3 changed files with 8 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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)"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue