From 3bc8c36aaaff385c650e7cefab6b81c6acd930ee Mon Sep 17 00:00:00 2001 From: Yuta Date: Sun, 17 Apr 2011 22:35:48 +0900 Subject: [PATCH] release 0.7.1 --- ChangeLog | 5 +++++ pythonbrew/commands/list.py | 4 ++-- pythonbrew/commands/py.py | 5 +++-- pythonbrew/commands/symlink.py | 9 +++++---- pythonbrew/commands/update.py | 6 +++--- pythonbrew/define.py | 2 +- stable-version.txt | 2 +- 7 files changed, 20 insertions(+), 13 deletions(-) diff --git a/ChangeLog b/ChangeLog index 767679c..3ca7a38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +* 0.7.1 + - Enable parallel make option (--jobs). + - The pythonbrew-install script accept Python-2.7. + - Added -b option to symlink command. + * 0.7 - Added symlink command. - Added --as option. diff --git a/pythonbrew/commands/list.py b/pythonbrew/commands/list.py index 46bb494..1c9f76d 100644 --- a/pythonbrew/commands/list.py +++ b/pythonbrew/commands/list.py @@ -18,14 +18,14 @@ class ListCommand(Command): dest='all_versions', action='store_true', default=False, - help='Show the all python versions' + help='Show the all python versions.' ) self.parser.add_option( '-k', '--known', dest='known', action='store_true', default=False, - help='List the available latest python versions' + help='List the available latest python versions.' ) def run_command(self, options, args): diff --git a/pythonbrew/commands/py.py b/pythonbrew/commands/py.py index 1a052b9..e7785e5 100644 --- a/pythonbrew/commands/py.py +++ b/pythonbrew/commands/py.py @@ -18,14 +18,15 @@ class PyCommand(Command): dest="pythons", action="append", default=[], - help="Using specified python versions." + help="Use the specified python version.", + metavar='VERSION' ) self.parser.add_option( "-v", "--verbose", dest="verbose", action="store_true", default=False, - help="Show python version." + help="Show the running python version." ) def run_command(self, options, args): diff --git a/pythonbrew/commands/symlink.py b/pythonbrew/commands/symlink.py index 8f24055..2745ba1 100644 --- a/pythonbrew/commands/symlink.py +++ b/pythonbrew/commands/symlink.py @@ -6,7 +6,7 @@ from pythonbrew.util import Package, symlink, unlink class SymlinkCommand(Command): name = "symlink" usage = "%prog" - summary = "Create/Remove a symbolic link to python" + summary = "Create/Remove a symbolic link" def __init__(self): super(SymlinkCommand, self).__init__() @@ -15,21 +15,22 @@ class SymlinkCommand(Command): dest="pythons", action="append", default=[], - help="Use the specified python versions" + help="Use the specified python version.", + metavar='VERSION' ) self.parser.add_option( "-r", "--remove", dest="remove", action="store_true", default=False, - help="Remove the all symbolic link" + help="Remove the all symbolic link." ) self.parser.add_option( "-b", "--bin", dest="bin", action="append", default=[], - help="Create a symbolic link to the specified script in bin directory" + help="Create a symbolic link to the specified script name in bin directory." ) def run_command(self, options, args): diff --git a/pythonbrew/commands/update.py b/pythonbrew/commands/update.py index 3313f83..d342224 100644 --- a/pythonbrew/commands/update.py +++ b/pythonbrew/commands/update.py @@ -20,21 +20,21 @@ class UpdateCommand(Command): dest='head', action='store_true', default=False, - help='Update the pythonbrew to the github version' + help='Update the pythonbrew to the github version.' ) self.parser.add_option( '--config', dest='config', action='store_true', default=False, - help='Update config.cfg' + help='Update config.cfg.' ) self.parser.add_option( '-f', '--force', dest='force', action='store_true', default=False, - help='Force update the pythonbrew' + help='Force update the pythonbrew.' ) def run_command(self, options, args): diff --git a/pythonbrew/define.py b/pythonbrew/define.py index e0fc347..2a3ea61 100644 --- a/pythonbrew/define.py +++ b/pythonbrew/define.py @@ -2,7 +2,7 @@ import os import re import ConfigParser -VERSION = "0.7" +VERSION = "0.7.1" if os.environ.has_key("PYTHONBREW_ROOT"): ROOT = os.environ["PYTHONBREW_ROOT"] diff --git a/stable-version.txt b/stable-version.txt index 0e2c939..7deb86f 100644 --- a/stable-version.txt +++ b/stable-version.txt @@ -1 +1 @@ -0.7 \ No newline at end of file +0.7.1 \ No newline at end of file