diff --git a/CHANGELOG.md b/CHANGELOG.md index b0cee9e..4a88642 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.19.0 - [Unreleased] +### v3.18.1 - 2023-09-26 + +#### Fixed + +- `wo site update` not changing site's php version +- Netdata install with a remote MySQL server +- Remove outdated Anemometer package +- Update bash_completion + ### v3.18.0 - 2023-08-28 #### Added @@ -82,7 +91,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - psutil dependency upgrade - Fix wrong else statements in stack_services.py ([PR #475](https://github.com/WordOps/WordOps/pull/475)) @stodorovic - ### v3.15.4 - 2022-10-25 #### Fixed @@ -449,7 +457,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - `wo stack install --cheat` wasn't working properly previously - `wo info` failure depending on php-fpm pool name. ConfigParser will now detect the section name. - ### v3.9.9.4 - 2019-10-18 #### Changed @@ -967,7 +974,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - WordOps configuration backup before upgrade - Previous acme.sh certs migration - "wo maintenance" command to perform server package update & cleanup -- Support for Netdata on backend : https://server.hostname:22222/netdata/ +- Support for Netdata on backend : - New Stacks : composer and netdata - additional argument for letsencrypt : --hsts - Clean Theme for adminer @@ -1086,4 +1093,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Added more automated testing with Redis - Replaced Postfix with smtp-cli - Dropped mail services -- Dropped w3tc support \ No newline at end of file +- Dropped w3tc support diff --git a/install b/install index 1beb3ab..af33807 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.18.0 - 2023-08-28 +# Version 3.18.1 - 2023-09-26 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index 4afb1f7..76f262b 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.18.0', + version='3.18.1', 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 74e76d9..f8953fa 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.18.0" + wo_version = "3.18.1" # WordOps packages versions wo_wp_cli = "2.8.1" wo_adminer = "4.8.1"