Prepare for release 3.15.3

This commit is contained in:
VirtuBox
2022-10-24 17:06:13 +02:00
parent 917f13d708
commit 873b70c8d5
5 changed files with 16 additions and 10 deletions

View File

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

View File

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

View File

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

View File

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

View File

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