From 873b70c8d548f6ab63de01c30103849a9ce1570b Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Mon, 24 Oct 2022 17:06:13 +0200 Subject: [PATCH] Prepare for release 3.15.3 --- CHANGELOG.md | 11 +++++++++-- README.md | 9 ++++----- install | 2 +- setup.py | 2 +- wo/core/variables.py | 2 +- 5 files changed, 16 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de6b49c..7acba3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,19 +8,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.16.0 - [Unreleased] +### v3.15.3 - 2022-10-24 + +#### Added + +- Support for Debian 10/11 + #### Changed - Install redis from official repository - Redis version bump to 7.0.5 - WP-CLI version bump to 2.7.1 -- Outdated Nginx directives removed by @nsgoyat +- Remove outdated Nginx directives - Updated repository GPG Key +- UFW stack detect proftpd during install #### Fixed - Netdata upgrade failure on old servers - MariaDB service disabled after upgrade with `wo stack migrate --mariadb` -- Proftpd install on Ubuntu 22.04 +- Proftpd install on Ubuntu 22.04 and Debian 11 ### v3.15.2 - 2022-09-23 diff --git a/README.md b/README.md index e39a04d..a837665 100644 --- a/README.md +++ b/README.md @@ -66,11 +66,11 @@ #### Also compatible - Debian 10 (Buster) -- Raspbian 10 (Buster) +- Debian 11 (Bullseye) #### For testing purpose only -- Debian 11 (Bullseye) +- Raspbian 10 (Buster) - Raspbian 11 (Bullseye) ## Getting Started @@ -124,10 +124,9 @@ wo site create example.com --wpsubdomain --wpce # install wpmu-subdomain + C wo site create example.com --html # create example.com for static/html sites wo site create example.com --php # create example.com with php 8.0 support wo site create example.com --php80 # create example.com with php 8.0 support -wo site create example.com --php74 # create example.com with php 7.4 support +wo site create example.com --php81 # create example.com with php 8.1 support wo site create example.com --mysql # create example.com with php 8.0 & mysql support wo site create example.com --mysql --php81 # create example.com with php 8.1 & mysql support -wo site create example.com --mysql --php73 # create example.com with php 7.3 & mysql support wo site create example.com --proxy=127.0.0.1:3000 # create example.com with nginx as reverse-proxy ``` @@ -195,7 +194,7 @@ Third-party debian packages shipped with WordOps : - [Nginx-wo by WordOps](https://build.opensuse.org/package/show/home:virtubox:WordOps/nginx) - [PHP by Ondřej Surý](https://launchpad.net/~ondrej/+archive/ubuntu/php) -- [Redis by Chris Lea](https://launchpad.net/~chris-lea/+archive/ubuntu/redis-server) +- [Redis](https://redis.io/docs/getting-started/installation/install-redis-on-linux/) WordPress Cache Plugins supported by WordOps : diff --git a/install b/install index 9612417..c19a950 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.15.2 - 2022-09-23 +# Version 3.15.3 - 2022-10-24 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index 9c87f06..c6195f9 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ if os.geteuid() == 0: os.makedirs('/var/lib/wo/tmp/') setup(name='wordops', - version='3.15.2', + version='3.15.3', description='An essential toolset that eases server administration', long_description=LONG, long_description_content_type='text/markdown', diff --git a/wo/core/variables.py b/wo/core/variables.py index b12dd41..596a173 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -15,7 +15,7 @@ class WOVar(): """Intialization of core variables""" # WordOps version - wo_version = "3.15.2" + wo_version = "3.15.3" # WordOps packages versions wo_wp_cli = "2.7.1" wo_adminer = "4.8.1"