diff --git a/CHANGELOG.md b/CHANGELOG.md index 107d91a..7aca5e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.9.x - [Unreleased] +#### v3.13.2 - 2020-10-27 + +#### Fixed + +- WordOps install issues on some servers +- MariaDB systemd service not fully enabled after upgrade + #### v3.13.1 - 2020-10-26 #### Fixed diff --git a/install b/install index 073ae6d..b8e3e2c 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.13.1 - 2020-10-26 +# Version 3.13.2 - 2020-10-27 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index 05d08f0..1de363f 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.13.1', + version='3.13.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 bc46051..40ae6d9 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -14,7 +14,7 @@ class WOVar(): """Intialization of core variables""" # WordOps version - wo_version = "3.13.1" + wo_version = "3.13.2" # WordOps packages versions wo_wp_cli = "2.4.0" wo_adminer = "4.7.5"