0.7 release

This commit is contained in:
Yuta
2011-03-23 01:27:00 +09:00
parent eb49f121db
commit ff2af78672
5 changed files with 27 additions and 11 deletions
+4
View File
@@ -1,3 +1,7 @@
* 0.7
- Added symlink command.
- Added --as option.
* 0.6.9
- Bug fixed.
- Added config.cfg
+10 -4
View File
@@ -53,7 +53,7 @@ Use the specified python in current shell::
Runs a named python file against specified and/or all pythons::
pythonbrew py test.py
pythonbrew py -v test.py # Show version
pythonbrew py -v test.py # Show running python version
pythonbrew py -p 2.6.6 -p 3.1.2 test.py # Use the specified pythons
List the installed pythons::
@@ -79,6 +79,12 @@ Upgrades pythonbrew to the latest version::
Disable pythonbrew::
pythonbrew off
Create/Remove a symbolic link to python::
pythonbrew symlink # Create a symbolic link, like "py2.5.5"
pythonbrew symlink -p 2.5.5
pythonbrew symlink -r # Remove a symbolic link
Show version::
@@ -94,9 +100,6 @@ install <version>
options: --force, --no-setuptools and --configure.
installed
List the installed versions of python.
switch <version>
Permanently use the specified python as default.
@@ -139,6 +142,9 @@ Options
\-n | --no-setuptools
Skip installation of setuptools.
\--as
Install a python under an alias.
LICENCE
=======
+11 -5
View File
@@ -52,7 +52,7 @@ Use the specified python in current shell::
Runs a named python file against specified and/or all pythons::
pythonbrew py test.py
pythonbrew py -v test.py # Show version
pythonbrew py -v test.py # Show running python version
pythonbrew py -p 2.6.6 -p 3.1.2 test.py # Use the specified pythons
List the installed pythons::
@@ -78,6 +78,12 @@ Upgrades pythonbrew to the latest version::
Disable pythonbrew::
pythonbrew off
Create/Remove a symbolic link to python::
pythonbrew symlink # Create a symbolic link, like "py2.5.5"
pythonbrew symlink -p 2.5.5
pythonbrew symlink -r # Remove a symbolic link
Show version::
@@ -91,10 +97,7 @@ install <version>
Setuptools and pip is automatically installed.
options: --force, --no-setuptools and --configure.
installed
List the installed versions of python.
options: --force, --no-setuptools, --configure and --as.
switch <version>
Permanently use the specified python as default.
@@ -138,6 +141,9 @@ Options
\-n | --no-setuptools
Skip installation of setuptools.
\--as
Install a python under an alias.
LICENCE
=======
+1 -1
View File
@@ -2,7 +2,7 @@ import os
import re
import ConfigParser
VERSION = "0.6.9"
VERSION = "0.7"
if os.environ.has_key("PYTHONBREW_ROOT"):
ROOT = os.environ["PYTHONBREW_ROOT"]
+1 -1
View File
@@ -1 +1 @@
0.6.9
0.7