diff --git a/ChangeLog b/ChangeLog index dcc3575..f61a9d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +* 0.9 + - Added `buildout` command. + - Added `venv` command. + * 0.8 - Fixed issue #21 Added Ubuntu 11.04(Natty) support - Fixed issue #24 non-framework python27 now defines environ properly. Thanks npinto. diff --git a/PKG-INFO b/PKG-INFO index a074e0c..832c59a 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -95,10 +95,10 @@ Runs the buildout with specified or current using python:: Create isolated python environments:: - pythonbrew venv create proj1 + pythonbrew venv create proj pythonbrew venv list - pythonbrew venv use proj1 - pythonbrew venv delete proj1 + pythonbrew venv use proj + pythonbrew venv delete proj Show version:: diff --git a/README.rst b/README.rst index a074e0c..832c59a 100644 --- a/README.rst +++ b/README.rst @@ -95,10 +95,10 @@ Runs the buildout with specified or current using python:: Create isolated python environments:: - pythonbrew venv create proj1 + pythonbrew venv create proj pythonbrew venv list - pythonbrew venv use proj1 - pythonbrew venv delete proj1 + pythonbrew venv use proj + pythonbrew venv delete proj Show version:: diff --git a/pythonbrew/define.py b/pythonbrew/define.py index 4b3551c..bf4dee5 100644 --- a/pythonbrew/define.py +++ b/pythonbrew/define.py @@ -6,7 +6,7 @@ except: import configparser as ConfigParser # pythonbrew version -VERSION = "0.8" +VERSION = "0.9" # pythonbrew root path ROOT = os.environ.get("PYTHONBREW_ROOT")