Skip to content

Commit 3514b9a

Browse files
committed
Merge branch 'hotfix/v3.7.4'
2 parents 6505dcd + c200831 commit 3514b9a

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
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.4 - Aug 29, 2016
2+
- Fix phpmemcacheadmin download urls [critical]
3+
14
v3.7.3 - Aug 17, 2016
25
- Fix wp-cli compatibility with WordPress 4.6 [critical]
36

ee/cli/plugins/stack.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2391,9 +2391,9 @@ def install(self, packages=[], apt_packages=[], disp_msg=True):
23912391

23922392
if self.app.pargs.utils:
23932393
Log.debug(self, "Setting packages variable for utils")
2394-
packages = packages + [["http://phpmemcacheadmin.googlecode"
2395-
".com/files/phpMemcachedAdmin-1.2.2"
2396-
"-r262.tar.gz", '/tmp/memcache.tar.gz',
2394+
packages = packages + [["https://storage.googleapis.com/google-code-archive-downloads/"
2395+
"v2/code.google.com/phpmemcacheadmin/"
2396+
"phpMemcachedAdmin-1.2.2-r262.tar.gz", '/tmp/memcache.tar.gz',
23972397
'phpMemcachedAdmin'],
23982398
["https://raw.githubusercontent.com"
23992399
"/rtCamp/eeadmin/master/cache/nginx/"

ee/core/variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class EEVariables():
1212
"""Intialization of core variables"""
1313

1414
# EasyEngine version
15-
ee_version = "3.7.3"
15+
ee_version = "3.7.4"
1616
# EasyEngine packages versions
1717
ee_wp_cli = "0.24.1"
1818
ee_adminer = "4.2.5"

install

Lines changed: 1 addition & 1 deletion
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.3"
51+
readonly ee_version_new="3.7.4"
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}')

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.3',
61+
version='3.7.4',
6262
description=long_description,
6363
long_description=long_description,
6464
classifiers=[],

0 commit comments

Comments
 (0)