diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c7191a..09994fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Releases -### v3.15.2 - [Unreleased] +### v3.16.0 - [Unreleased] + +### v3.15.2 - 2022-09-23 + +#### Added + +- Add support for Chrome Privacy Preserving Prefetch Proxy [Issue 440](https://github.com/WordOps/WordOps/issues/440) + +#### Changed + +- Cloudflare IP script for Nginx now fetch Cloudflare IPs using the API + +#### Fixed + +- wo secure --auth on Ubuntu 22.04 ### v3.15.1 - 2022-09-09 diff --git a/README.md b/README.md index 1d6c072..1ab274f 100644 --- a/README.md +++ b/README.md @@ -166,6 +166,7 @@ For any other questions about WordOps or if you need support, please use the [Co If you'd like to contribute, please fork the repository and make changes as you'd like. Pull requests are warmly welcome. There is no need to be a developer or a system administrator to contribute to WordOps project. You can still contribute by helping us to improve [WordOps documentation](https://github.com/WordOps/docs.wordops.net). +Otherwise, you can still contribute to the project by making a donation on [Ko-Fi](https://ko-fi.com/wordops). ## Credits diff --git a/install b/install index edeee09..5f7ba7d 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.15.1 - 2022-09-09 +# Version 3.15.2 - 2022-09-23 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index 2a08904..9c87f06 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.1', + version='3.15.2', 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 ca3e844..808395e 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.1" + wo_version = "3.15.2" # WordOps packages versions wo_wp_cli = "2.6.0" wo_adminer = "4.8.1"