diff --git a/ChangeLog b/ChangeLog index 3ea73bd..00d1140 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* 1.1 + - Added --framework, --universal and --static options to install command. + * 1.0 - Added systemwide install support. (issue #31) - Fixed issue #41 Handle venv binary with the symlink command. diff --git a/PKG-INFO b/PKG-INFO index 81ebabb..08a8488 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -173,6 +173,11 @@ See more details below Changelog ========= +1.1 (2011-08-29) +---------------- + +- Added --framework, --universal and --static options to install command. + 1.0 (2011-08-08) ---------------- diff --git a/pythonbrew/define.py b/pythonbrew/define.py index 4174c7b..0f643c3 100644 --- a/pythonbrew/define.py +++ b/pythonbrew/define.py @@ -6,7 +6,7 @@ except: import configparser as ConfigParser # pythonbrew version -VERSION = "1.0" +VERSION = "1.1" # pythonbrew installer root path INSTALLER_ROOT = os.path.dirname(os.path.abspath(__file__)) diff --git a/stable-version.txt b/stable-version.txt index 9f8e9b6..b123147 100644 --- a/stable-version.txt +++ b/stable-version.txt @@ -1 +1 @@ -1.0 \ No newline at end of file +1.1 \ No newline at end of file