release 0.1.1

This commit is contained in:
Yamashita Yuu 2012-09-03 19:40:30 +09:00
parent f0ff5a416e
commit d08fcc522e
2 changed files with 6 additions and 2 deletions

View file

@ -15,7 +15,7 @@ This project was forked from [rbenv](https://github.com/sstephenson/rbenv) and.
* Provide support for **per-project Python versions**.
* Allow you to **override the Python version** with an environment
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).
## Table of Contents
@ -276,6 +276,10 @@ tracker](https://github.com/yyuu/pyenv/issues).
### <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)
* Initial public release.

View file

@ -60,7 +60,7 @@ shopt -u nullglob
command="$1"
case "$command" in
"" | "-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)"