Set variables for new release

This commit is contained in:
VirtuBox
2019-06-16 19:55:41 +02:00
parent 7eacd6c44d
commit fd270187b6
4 changed files with 7 additions and 5 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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=[],

View File

@@ -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"