From ff2af78672e0f4eeeb00ad15b5f7d2f92423683d Mon Sep 17 00:00:00 2001 From: Yuta Date: Wed, 23 Mar 2011 01:27:00 +0900 Subject: [PATCH] 0.7 release --- ChangeLog | 4 ++++ PKG-INFO | 14 ++++++++++---- README.rst | 16 +++++++++++----- pythonbrew/define.py | 2 +- stable-version.txt | 2 +- 5 files changed, 27 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 803fc19..767679c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +* 0.7 + - Added symlink command. + - Added --as option. + * 0.6.9 - Bug fixed. - Added config.cfg diff --git a/PKG-INFO b/PKG-INFO index b864294..043cb26 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -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 options: --force, --no-setuptools and --configure. -installed - List the installed versions of python. - switch 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 ======= diff --git a/README.rst b/README.rst index 2580769..656cb74 100644 --- a/README.rst +++ b/README.rst @@ -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 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 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 ======= diff --git a/pythonbrew/define.py b/pythonbrew/define.py index 0f62b7d..2caaebe 100644 --- a/pythonbrew/define.py +++ b/pythonbrew/define.py @@ -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"] diff --git a/stable-version.txt b/stable-version.txt index 1864002..0e2c939 100644 --- a/stable-version.txt +++ b/stable-version.txt @@ -1 +1 @@ -0.6.9 \ No newline at end of file +0.7 \ No newline at end of file