Prepare for release v3.20.0

This commit is contained in:
VirtuBox
2024-04-21 21:57:50 +02:00
parent 63c24b7945
commit a349c61789
2 changed files with 19 additions and 4 deletions

View File

@@ -6,7 +6,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## Releases
### v3.20.0 - [Unreleased]
### v3.21.0 - [Unreleased]
### v3.20.0 - 2024-04-21
#### Added
- Create subsite by @doofusdavid in [PR #598](https://github.com/WordOps/WordOps/pull/598)
#### Fixed
- Fix PHP{version}-FPM is not installed and fix support for php 8.3 by @gabrielgiordan in [PR #604](https://github.com/WordOps/WordOps/pull/604)
- do not cache wishlist by @admarty in [PR #608](https://github.com/WordOps/WordOps/pull/608)
- Update install by @michaelangelocobo in [PR #628](https://github.com/WordOps/WordOps/pull/628)
- Fix WordOps server ip check in Nginx stack install
- Fix WordOps create new site duration
-
### v3.19.1 - 2023-12-03

View File

@@ -9,7 +9,7 @@
# -------------------------------------------------------------------------
# wget -qO wo wops.cc && sudo -E bash wo
# -------------------------------------------------------------------------
# Version 3.19.1 - 2023-12-03
# Version 3.20.0 - 2024-04-21
# -------------------------------------------------------------------------
# CONTENTS
@@ -167,9 +167,9 @@ wo_check_distro() {
wo_lib_echo_fail "Feel free to open a pull-request if you want to add support for another Linux distributions"
exit 100
else
check_wo_linux_distro=$(lsb_release -sc | grep -E "bionic|buster|focal|jammy|bullseye|bookworm")
check_wo_linux_distro=$(lsb_release -sc | grep -E "buster|focal|jammy|bullseye|bookworm")
if [ -z "$check_wo_linux_distro" ]; then
wo_lib_echo_fail "WordOps (wo) only supports Ubuntu 18.04/20.04/22.04 LTS, Debian 10.x/11.x/12.x and Raspbian 10x./11.x \n
wo_lib_echo_fail "WordOps (wo) only supports Ubuntu 20.04/22.04 LTS, Debian 10.x/11.x/12.x and Raspbian 10x./11.x \n
You can bypass this warning by adding the flag --force to the install command"
exit 100
fi