From a349c61789ea8264533bf8f0aeb44681efbb0bdc Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Sun, 21 Apr 2024 21:57:50 +0200 Subject: [PATCH] Prepare for release v3.20.0 --- CHANGELOG.md | 17 ++++++++++++++++- install | 6 +++--- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce662e5..0176142 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/install b/install index 1a6377c..22d6999 100755 --- a/install +++ b/install @@ -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