From d08fcc522e9d3db6fe2783970ed508a3d42e82f8 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Mon, 3 Sep 2012 19:40:30 +0900 Subject: [PATCH] release 0.1.1 --- README.md | 6 +++++- libexec/pyenv | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a02d8220..954ee8a5 100644 --- a/README.md +++ b/README.md @@ -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). ### 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. diff --git a/libexec/pyenv b/libexec/pyenv index 0a755ad8..30fd4a2a 100755 --- a/libexec/pyenv +++ b/libexec/pyenv @@ -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)"