From fd270187b66935b354f12916ffe8dc055bbc56f1 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Sun, 16 Jun 2019 19:55:41 +0200 Subject: [PATCH] Set variables for new release --- CHANGELOG.md | 2 ++ install | 6 +++--- setup.py | 2 +- wo/core/variables.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6d7734..ad94d06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.9.6 - [Unreleased] +### v3.9.5.2 - 2019-06-16 + #### Fixed - WP_CACHE_KEY_SALT set twice diff --git a/install b/install index a1eccd5..9b65546 100755 --- a/install +++ b/install @@ -10,7 +10,7 @@ # Version 3.9.5.1 - 2019-05-10 # ------------------------------------------------------------------------- readonly wo_version_old="2.2.3" -readonly wo_version_new="3.9.5.1" +readonly wo_version_new="3.9.5.2" # CONTENTS # --- # 1. VARIABLES AND DECLARATIONS @@ -380,7 +380,7 @@ wo_install_acme_sh() { --config-home /etc/letsencrypt/config \ --cert-home /etc/letsencrypt/renewal # enable auto-upgrade - /etc/letsencrypt/acme.sh --config-home /etc/letsencrypt/config --upgrade --auto-upgrade + /etc/letsencrypt/acme.sh --config-home '/etc/letsencrypt/config' --upgrade --auto-upgrade } >> "$wo_install_log" 2>&1 fi @@ -508,7 +508,7 @@ wo_upgrade_nginx() { else WO WO_STACK_INSTALL_ARGS="" fi - /usr/local/bin/wo stack install --nginx --php $WO_STACK_INSTALL_ARGS + /usr/local/bin/wo stack install --nginx --php "$WO_STACK_INSTALL_ARGS" echo "$wo_version_new" > /etc/nginx/common/release rm -f /etc/nginx/common/acl.conf /etc/nginx/conf.d/{map-wp-cache.conf,map-wp.conf} fi diff --git a/setup.py b/setup.py index c302674..ed36b82 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ if not os.path.isfile('/root/.gitconfig'): shutil.copy2(os.path.expanduser("~")+'/.gitconfig', '/root/.gitconfig') setup(name='wo', - version='3.9.5', + version='3.9.5.2', description=long_description, long_description=long_description, classifiers=[], diff --git a/wo/core/variables.py b/wo/core/variables.py index d3af7bd..9997193 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -11,7 +11,7 @@ class WOVariables(): """Intialization of core variables""" # WordOps version - wo_version = "3.9.5" + wo_version = "3.9.5.2" # WordOps packages versions wo_wp_cli = "2.2.0" wo_adminer = "4.7.1"