Skip to content

Commit 6505dcd

Browse files
committed
Merge branch 'hotfix/v3.7.3'
2 parents 68fece4 + 1111fd4 commit 6505dcd

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v3.7.3 - Aug 17, 2016
2+
- Fix wp-cli compatibility with WordPress 4.6 [critical]
3+
14
v3.7.2 - Jul 20, 2016
25
- CGI Vulnerability HTTPOXY Patch
36

ee/core/variables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ class EEVariables():
1212
"""Intialization of core variables"""
1313

1414
# EasyEngine version
15-
ee_version = "3.7.2"
15+
ee_version = "3.7.3"
1616
# EasyEngine packages versions
17-
ee_wp_cli = "0.23.0"
17+
ee_wp_cli = "0.24.1"
1818
ee_adminer = "4.2.5"
1919
ee_roundcube = "1.1.4"
2020
# ee_vimbadmin = "3.0.12"

install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fi
4848
# Define variables for later use
4949
ee_branch=$1
5050
readonly ee_version_old="2.2.3"
51-
readonly ee_version_new="3.7.2"
51+
readonly ee_version_new="3.7.3"
5252
readonly ee_log_dir=/var/log/ee/
5353
readonly ee_install_log=/var/log/ee/install.log
5454
readonly ee_linux_distro=$(lsb_release -i | awk '{print $3}')
@@ -233,7 +233,7 @@ function ee_update_wp_cli()
233233
if [ "${WP_CLI_PATH}" != "" ]; then
234234
# Get WP-CLI version
235235
WP_CLI_VERSION=$(${PHP_PATH} ${WP_CLI_PATH} --allow-root cli version | awk '{ print $2 }')
236-
dpkg --compare-versions ${WP_CLI_VERSION} lt 0.23.0
236+
dpkg --compare-versions ${WP_CLI_VERSION} lt 0.24.1
237237
# Update WP-CLI version
238238
if [ "$?" == "0" ]; then
239239
wget -qO ${WP_CLI_PATH} https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
shutil.copy2(os.path.expanduser("~")+'/.gitconfig', '/root/.gitconfig')
5959

6060
setup(name='ee',
61-
version='3.7.2',
61+
version='3.7.3',
6262
description=long_description,
6363
long_description=long_description,
6464
classifiers=[],

0 commit comments

Comments
 (0)