diff --git a/CHANGELOG.txt b/CHANGELOG.txt index be627ce6..f0f8262e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,7 @@ -v 3.2.1 - Jun 19, 205 +v 3.2.2 - Jun 19, 2015 +- Fixed bug that was preventing disabling debug + +v 3.2.1 - Jun 19, 2015 - Improved experimental HHVM and Pagespeed handling, fixes #564, #562 - Fixed missing link for Proxy sites #571 - Added hhvm.server.ip for HHVM config #567 diff --git a/ee/cli/plugins/debug.py b/ee/cli/plugins/debug.py index a450e024..929f1b67 100644 --- a/ee/cli/plugins/debug.py +++ b/ee/cli/plugins/debug.py @@ -224,10 +224,9 @@ class EEDebugController(CementBaseController): hhvmconf=True else: hhvmconf=False - data = dict(php="9001", debug="9001", hhvm="9001", - hhvmconf=hhvmcof) + data = dict(php="9000", debug="9001", hhvm="8000", + hhvmconf=hhvmconf) - data = dict(php="9000", debug="9001", hhvm="8000") Log.debug(self, 'Writting the Nginx debug configration to file' ' /etc/nginx/conf.d/upstream.conf ') ee_nginx = open('/etc/nginx/conf.d/upstream.conf', diff --git a/ee/core/variables.py b/ee/core/variables.py index 7ecbd959..c615dc0b 100644 --- a/ee/core/variables.py +++ b/ee/core/variables.py @@ -12,7 +12,7 @@ class EEVariables(): """Intialization of core variables""" # EasyEngine version - ee_version = "3.2.1" + ee_version = "3.2.2" # EasyEngine packages versions ee_wp_cli = "0.19.1" diff --git a/install b/install index e3b09bbc..3488b8de 100644 --- a/install +++ b/install @@ -48,7 +48,7 @@ fi # Define variables for later use ee_branch=$1 readonly ee_version_old="2.2.3" -readonly ee_version_new="3.2.1" +readonly ee_version_new="3.2.2" readonly ee_log_dir=/var/log/ee/ readonly ee_install_log=/var/log/ee/install.log readonly ee_linux_distro=$(lsb_release -i | awk '{print $3}') diff --git a/setup.py b/setup.py index 0c1c2112..031cafed 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ except Exception as e: os.system("git config --global user.email {0}".format(ee_email)) setup(name='ee', - version='3.2.1', + version='3.2.2', description=long_description, long_description=long_description, classifiers=[],