mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
release 0.1.1
This commit is contained in:
parent
f0ff5a416e
commit
d08fcc522e
2 changed files with 6 additions and 2 deletions
|
@ -15,7 +15,7 @@ This project was forked from [rbenv](https://github.com/sstephenson/rbenv) and.
|
||||||
* Provide support for **per-project Python versions**.
|
* Provide support for **per-project Python versions**.
|
||||||
* Allow you to **override the Python version** with an environment
|
* Allow you to **override the Python version** with an environment
|
||||||
variable.
|
variable.
|
||||||
* Search commands from multiple versions of Python at a time.
|
* Search commands from **multiple versions of Python at a time**.
|
||||||
This may be helpful to test across Python versions with [tox](http://pypi.python.org/pypi/tox).
|
This may be helpful to test across Python versions with [tox](http://pypi.python.org/pypi/tox).
|
||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
@ -276,6 +276,10 @@ tracker](https://github.com/yyuu/pyenv/issues).
|
||||||
|
|
||||||
### <a name="section_4.1"></a> 4.1 Version History
|
### <a name="section_4.1"></a> 4.1 Version History
|
||||||
|
|
||||||
|
**0.1.1** (September 3, 2012)
|
||||||
|
|
||||||
|
* Support multiple versions of Python at a time.
|
||||||
|
|
||||||
**0.1.0** (August 31, 2012)
|
**0.1.0** (August 31, 2012)
|
||||||
|
|
||||||
* Initial public release.
|
* Initial public release.
|
||||||
|
|
|
@ -60,7 +60,7 @@ shopt -u nullglob
|
||||||
command="$1"
|
command="$1"
|
||||||
case "$command" in
|
case "$command" in
|
||||||
"" | "-h" | "--help" )
|
"" | "-h" | "--help" )
|
||||||
echo -e "pyenv 0.1.1git\n$(pyenv-help)" >&2
|
echo -e "pyenv 0.1.1\n$(pyenv-help)" >&2
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
command_path="$(command -v "pyenv-$command" || true)"
|
command_path="$(command -v "pyenv-$command" || true)"
|
||||||
|
|
Loading…
Reference in a new issue